]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/src/process-tests.el (make-process/mix-stderr): Use bash.
authorGlenn Morris <rgm@gnu.org>
Thu, 19 Apr 2018 00:18:33 +0000 (20:18 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 19 Apr 2018 00:18:33 +0000 (20:18 -0400)
Not all shells support ">&2".

test/src/process-tests.el

index 849676ea8f0bef967a4ed5b0443bab4a2adccb9e..e53fb58c091d13fec9ed568da04a331a43dc62ad 100644 (file)
         (kill-process process)))))
 
 (ert-deftest make-process/mix-stderr ()
-  "Check that ‘make-process’ mixes the output streams if STDERR is nil."
-  (skip-unless (executable-find shell-file-name))
+  "Check that `make-process' mixes the output streams if STDERR is nil."
+  (skip-unless (executable-find "bash"))
   (with-temp-buffer
     (let ((process (make-process
                     :name "mix-stderr"
-                    :command (list shell-file-name shell-command-switch
+                    :command (list "bash" "-c"
                                    "echo stdout && echo stderr >&2")
                     :buffer (current-buffer)
                     :sentinel #'ignore