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:
parent
07392da96d
commit
acf583b209
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue