1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix 'shell-tests-split-string' on MS-Windows

* test/lisp/shell-tests.el (shell-tests-split-string): Skip test
that always fails on MS-Windows/MS-DOS.
This commit is contained in:
Eli Zaretskii 2021-07-15 12:37:26 +03:00
parent 07392da96d
commit acf583b209

View file

@ -56,7 +56,8 @@
'("ls" "/tmp/foo bar")))
(should (equal (split-string-shell-command "ls /tmp/'foo\\ bar'")
'("ls" "/tmp/foo\\ bar")))
(should (equal (split-string-shell-command "ls /tmp/foo\\ bar")
'("ls" "/tmp/foo bar"))))
(unless (memq system-type '(windows-nt ms-dos))
(should (equal (split-string-shell-command "ls /tmp/foo\\ bar")
'("ls" "/tmp/foo bar")))))
;;; shell-tests.el ends here