diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-16 01:42:49 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-16 01:42:55 +0200 |
commit | 1cd278bfcd7970ebe7f00ec5bd692ecea031ec6d (patch) | |
tree | 8faaee1398674caa5b5053431e8bf5b1fa9c5e69 /test/lisp/shell-tests.el | |
parent | 653848a277ea887fd9f4dde382570ca6829a8608 (diff) | |
download | emacs-1cd278bfcd7970ebe7f00ec5bd692ecea031ec6d.tar.gz emacs-1cd278bfcd7970ebe7f00ec5bd692ecea031ec6d.tar.bz2 emacs-1cd278bfcd7970ebe7f00ec5bd692ecea031ec6d.zip |
Add a couple more shell-tests-split-string tests
Diffstat (limited to 'test/lisp/shell-tests.el')
-rw-r--r-- | test/lisp/shell-tests.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lisp/shell-tests.el b/test/lisp/shell-tests.el index c4147088a2e..223a18590b1 100644 --- a/test/lisp/shell-tests.el +++ b/test/lisp/shell-tests.el @@ -54,6 +54,10 @@ '("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"))) + (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)) |