We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07392da commit acf583bCopy full SHA for acf583b
test/lisp/shell-tests.el
@@ -56,7 +56,8 @@
56
'("ls" "/tmp/foo bar")))
57
(should (equal (split-string-shell-command "ls /tmp/'foo\\ bar'")
58
'("ls" "/tmp/foo\\ bar")))
59
- (should (equal (split-string-shell-command "ls /tmp/foo\\ bar")
60
- '("ls" "/tmp/foo bar"))))
+ (unless (memq system-type '(windows-nt ms-dos))
+ (should (equal (split-string-shell-command "ls /tmp/foo\\ bar")
61
+ '("ls" "/tmp/foo bar")))))
62
63
;;; shell-tests.el ends here
0 commit comments