X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-program.impure.lisp;h=76972d3a9573b9c12981f2c3cc19ca1be9137422;hb=57e571d82eb271e41f3e8e9de69ad9501888d142;hp=098c74ded1a11b5c078cf089f2244c8b28697aee;hpb=4c81c652cdc32faefee1bccb84c3c9a7854e3edd;p=sbcl.git diff --git a/tests/run-program.impure.lisp b/tests/run-program.impure.lisp index 098c74d..76972d3 100644 --- a/tests/run-program.impure.lisp +++ b/tests/run-program.impure.lisp @@ -264,3 +264,45 @@ (process-close proc) (assert (not stopped)))))) + +;; Check that in when you do run-program with :wait t that causes +;; encoding error, it does not affect the following run-program +(with-test (:name (:run-program :clean-exit-after-encoding-error)) + (let ((had-error-p nil)) + (flet ((barf (&optional (format :default)) + (with-output-to-string (stream) + (run-program #-netbsd "/usr/bin/perl" #+netbsd "/usr/pkg/bin/perl" + '("-e" "print \"\\x20\\xfe\\xff\\x0a\"") + :output stream + :external-format format))) + (no-barf () + (with-output-to-string (stream) + (run-program "/bin/echo" + '("This is a test") + :output stream)))) + (handler-case + (barf :utf-8) + (error () + (setq had-error-p t))) + (assert had-error-p) + ;; now run the harmless program + (setq had-error-p nil) + (handler-case + (no-barf) + (error () + (setq had-error-p t))) + (assert (not had-error-p))))) + +(with-test (:name (:run-program :no-such-thing)) + (assert (search "Couldn't execute" + (handler-case + (progn (run-program "no-such-program-we-hope" '()) nil) + (error (e) + (princ-to-string e)))))) + +(with-test (:name (:run-program :not-executable)) + (assert (search "Couldn't execute" + (handler-case + (progn (run-program "run-program.impure.lisp" '()) nil) + (error (e) + (princ-to-string e))))))