diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-01-05 20:26:38 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-01-05 20:26:38 +0200 |
commit | 02e6ffe860cacc2681448b40f8b3279d31442b58 (patch) | |
tree | 6c3facb9d91916b84ebb3eaa7e377b7ae598be0e /test/src/process-tests.el | |
parent | 9973019764250ac1f4d77a6b426cdd9c241151c5 (diff) | |
download | emacs-02e6ffe860cacc2681448b40f8b3279d31442b58.tar.gz emacs-02e6ffe860cacc2681448b40f8b3279d31442b58.tar.bz2 emacs-02e6ffe860cacc2681448b40f8b3279d31442b58.zip |
Fix process-tests on MS-Windows
It was again broken by recent changes.
* test/src/process-tests.el
(process-tests/fd-setsize-no-crash/make-serial-process): Skip test
on MS-Windows.
Diffstat (limited to 'test/src/process-tests.el')
-rw-r--r-- | test/src/process-tests.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/src/process-tests.el b/test/src/process-tests.el index 1f88232c7fc..ca98f54bdb1 100644 --- a/test/src/process-tests.el +++ b/test/src/process-tests.el @@ -646,6 +646,8 @@ FD_SETSIZE file descriptors (Bug#24325)." (ert-deftest process-tests/fd-setsize-no-crash/make-serial-process () "Check that Emacs doesn't crash when trying to use more than FD_SETSIZE file descriptors (Bug#24325)." + ;; This test cannot be run if PTYs aren't supported. + (skip-unless (not (eq system-type 'windows-nt))) (with-timeout (60 (ert-fail "Test timed out")) (process-tests--with-processes processes ;; In order to use `make-serial-process', we need to create some @@ -667,6 +669,15 @@ FD_SETSIZE file descriptors (Bug#24325)." (tty-name (process-tty-name host))) (should (processp host)) (push host processes) + ;; FIXME: The assumption below that using :connection 'pty + ;; in make-process necessarily produces a process with PTY + ;; connection is unreliable and non-portable. + ;; make-process can legitimately and silently fall back on + ;; pipes if allocating a PTY fails (and on MS-Windows it + ;; always fails). The following code also assumes that + ;; process-tty-name produces a file name that can be + ;; passed to 'stat' and to make-serial-process, which is + ;; also non-portable. (should tty-name) (should (file-exists-p tty-name)) (should-not (member tty-name tty-names)) |