summaryrefslogtreecommitdiff
path: root/test/src/process-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/process-tests.el')
-rw-r--r--test/src/process-tests.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/src/process-tests.el b/test/src/process-tests.el
index 24b09c56e2c..8d4516ff3b6 100644
--- a/test/src/process-tests.el
+++ b/test/src/process-tests.el
@@ -493,6 +493,13 @@ FD_SETSIZE."
for ,process = (process-tests--ignore-EMFILE
(make-pipe-process
:name (format "pipe %d" i)
+ ;; Prevent delete-process from
+ ;; trying to read from pipe
+ ;; processes that didn't exit
+ ;; yet, because no one is
+ ;; writing to those pipes, and
+ ;; the read will stall.
+ :stop (eq system-type 'windows-nt)
:buffer ,buffer
:coding 'no-conversion
:noquery t))