bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#64975: 30.0.50; accept-process-output and async connect


From: Eli Zaretskii
Subject: bug#64975: 30.0.50; accept-process-output and async connect
Date: Sat, 05 Aug 2023 12:26:13 +0300

> From: Helmut Eller <eller.helmut@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?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]