X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-program.impure.lisp;h=76972d3a9573b9c12981f2c3cc19ca1be9137422;hb=f3491f128307938cc56367f739b8fbf9e5d503b6;hp=c04337aeb254385dd87fb407886946692b2c32fb;hpb=5b96a0e6ff6390f3c85f90a72207cf052ea11bf6;p=sbcl.git diff --git a/tests/run-program.impure.lisp b/tests/run-program.impure.lisp index c04337a..76972d3 100644 --- a/tests/run-program.impure.lisp +++ b/tests/run-program.impure.lisp @@ -31,8 +31,7 @@ (assert (= (read-byte in) i))) (process-close process)))) -#+sb-thread -(with-test (:name :run-program-cat-2) +(with-test (:name :run-program-cat-2 :skipped-on '(not :sb-thread)) ;; Tests that reading from a FIFO is interruptible. (let* ((process (sb-ext:run-program "/bin/cat" '() :wait nil @@ -110,6 +109,19 @@ (assert (= 0 (read-sequence (make-array 8) out))) (assert (equalp buf data))))) +(with-test (:name :run-program-cat-4) + ;; Null broadcast stream as output + (let* ((process (sb-ext:run-program "/bin/cat" '() :wait nil + :output (make-broadcast-stream) + :input :stream)) + (in (process-input process))) + (unwind-protect + (progn + (write-string "foobar" in) + (close in) + (process-wait process)) + (process-close process)))) + ;;; Test driving an external program (cat) through pipes wrapped in ;;; composite streams. @@ -132,7 +144,7 @@ (defparameter *cat-out-pipe* (make-pipe)) (defparameter *cat-out* (make-synonym-stream '*cat-out-pipe*)) -(with-test (:name :run-program-cat-2) +(with-test (:name :run-program-cat-5) (let ((cat (run-program "/bin/cat" nil :input *cat-in* :output *cat-out* :wait nil))) (dolist (test '("This is a test!" @@ -252,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))))))