]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix process-tests on MS-Windows
authorEli Zaretskii <eliz@gnu.org>
Tue, 29 Dec 2020 18:41:46 +0000 (20:41 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 29 Dec 2020 18:41:46 +0000 (20:41 +0200)
* test/src/process-tests.el (process-tests/fd-setsize-no-crash):
Skip this test on windows-nt systems, as we cannot use more than
FD_SETSIZE file descriptors there: if we try, we crash.

test/src/process-tests.el

index 464541a9387e3cfe8198852cda7db0c70bb9f728..3272044afccd9732923e490a3b55a73e7ac579c8 100644 (file)
@@ -389,6 +389,7 @@ See Bug#30460."
 (ert-deftest process-tests/fd-setsize-no-crash ()
   "Check that Emacs doesn't crash when trying to use more than
 FD_SETSIZE file descriptors (Bug#24325)."
+  (skip-unless (not (eq system-type 'windows-nt)))
   (with-timeout (60)
   (let ((sleep (executable-find "sleep"))
         ;; FD_SETSIZE is typically 1024 on Unix-like systems.