tests: run-program: add test for escape-arguents (windows)
This commit is contained in:
parent
656696e62a
commit
4256ac7e2b
1 changed files with 5 additions and 1 deletions
|
|
@ -35,7 +35,11 @@
|
|||
(test arg-test
|
||||
(is (equal '(nil :exited 0)
|
||||
(with-run-program (arg-test ("a" "b c" "d \\" "e\ 4\\
|
||||
")))) "ext:run-program doesn't escape arguments properly"))
|
||||
")))) "ext:run-program doesn't escape arguments properly")
|
||||
#+windows
|
||||
(is-false (equal '(nil :exited 0)
|
||||
(with-run-program (arg-test ("a" "b c" "d \\" "e\ 4\\
|
||||
") :escape-arguments nil))) "ext:run-program doesn't escape arguments properly"))
|
||||
|
||||
(test output-streams
|
||||
;; error is a separate stream
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue