aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorKen Brown2021-07-09 16:37:52 -0400
committerKen Brown2021-07-09 16:37:52 -0400
commit3fa711c11d1497418fdf8a866b7ba52dd3b00e0e (patch)
tree65a990af6e4c41e44e1fce9237e29460faf40878 /test/src
parentb423848b5eb83fce894a1c5fa12a498d64e44da2 (diff)
downloademacs-3fa711c11d1497418fdf8a866b7ba52dd3b00e0e.tar.gz
emacs-3fa711c11d1497418fdf8a866b7ba52dd3b00e0e.zip
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)
Diffstat (limited to 'test/src')
-rw-r--r--test/src/process-tests.el2
1 files changed, 2 insertions, 0 deletions
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)."
626FD_SETSIZE file descriptors (Bug#24325)." 626FD_SETSIZE file descriptors (Bug#24325)."
627 (skip-unless (featurep 'make-network-process '(:server t))) 627 (skip-unless (featurep 'make-network-process '(:server t)))
628 (skip-unless (featurep 'make-network-process '(:family local))) 628 (skip-unless (featurep 'make-network-process '(:family local)))
629 ;; Avoid hang due to connect/accept handshake on Cygwin (bug#49496).
630 (skip-unless (not (eq system-type 'cygwin)))
629 (with-timeout (60 (ert-fail "Test timed out")) 631 (with-timeout (60 (ert-fail "Test timed out"))
630 (process-tests--with-temp-directory directory 632 (process-tests--with-temp-directory directory
631 (process-tests--with-processes processes 633 (process-tests--with-processes processes