From 3fa711c11d1497418fdf8a866b7ba52dd3b00e0e Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Fri, 9 Jul 2021 16:37:52 -0400 Subject: [PATCH] Skip a process test on Cygwin to avoid hang * test/src/process-tests.el (process-tests/fd-setsize-no-crash/make-network-process): Skip test on Cygwin to avoid hang due to connect/accept handshake. (Bug#49496) --- test/src/process-tests.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/src/process-tests.el b/test/src/process-tests.el index b64c82c87d0..1774f2fc74e 100644 --- a/test/src/process-tests.el +++ b/test/src/process-tests.el @@ -626,6 +626,8 @@ FD_SETSIZE file descriptors (Bug#24325)." FD_SETSIZE file descriptors (Bug#24325)." (skip-unless (featurep 'make-network-process '(:server t))) (skip-unless (featurep 'make-network-process '(:family local))) + ;; Avoid hang due to connect/accept handshake on Cygwin (bug#49496). + (skip-unless (not (eq system-type 'cygwin))) (with-timeout (60 (ert-fail "Test timed out")) (process-tests--with-temp-directory directory (process-tests--with-processes processes -- 2.39.2