GNU bug report logs -
#64975
30.0.50; accept-process-output and async connect
Previous Next
Full log
View this message in rfc822 format
> From: Helmut Eller <eller.helmut <at> gmail.com>
> Date: Mon, 31 Jul 2023 15:31:00 +0200
>
> (ert-deftest async-connect ()
> (let* ((host 'local)
> (family 'ipv4)
> (port 57869)
> (server (make-network-process
> :name "server" :server t :noquery t :reuseaddr t
> :host host :service port :family family))
> (proc (make-network-process
> :name "async-connect" :nowait t
> :host host :service port :family family)))
> (should (eq (process-status proc) 'connect))
> (should (accept-process-output proc 2))
> (should (eq (process-status proc) 'open))))
>
> when executed with
> emacs --batch -Q -l async-connect.el -f ert-run-tests-batch-and-exit
>
> It seems that accept-process-output correctly updates the process-status
> but it forgets to break out of the loop.
>
> With the following change, the test passes:
Robert, any comments?
This bug report was last modified 1 year and 313 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.