X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-program.test.sh;h=03778521bce05af1be75da7c6ee2a808ed2f7b3c;hb=9c9d6dbdc28a8bfe70be09f35263e9ec02411d0e;hp=00399d159fe81817d5440dd848fe43644fef63c1;hpb=bc19622c8c9b6af2635da30ed9c88665012d3361;p=sbcl.git diff --git a/tests/run-program.test.sh b/tests/run-program.test.sh index 00399d1..0377852 100644 --- a/tests/run-program.test.sh +++ b/tests/run-program.test.sh @@ -8,11 +8,13 @@ # While most of SBCL is derived from the CMU CL system, the test # files (like this one) were written from scratch after the fork # from CMU CL. -# +# # This software is in the public domain and is provided with # absolutely no warranty. See the COPYING and CREDITS files for # more information. +. ./subr.sh + # Make sure that there's at least something in the environment (for # one of the tests below). SOMETHING_IN_THE_ENVIRONMENT='yes there is' @@ -20,12 +22,13 @@ export SOMETHING_IN_THE_ENVIRONMENT PATH=/some/path/that/does/not/exist:${PATH} export PATH -${SBCL:-sbcl} <&2") + :output s :search t :error :output :wait t)))) + (assert (string= str (format nil "Foo~%Bar~%")))) + + ;; end of file in the middle of a UTF-8 character + (typep (nth-value 1 (ignore-errors + (let ((sb-impl::*default-external-format* :utf-8)) + (with-output-to-string (s) + (run-program "printf" '("\\316") + :output s :search t :wait t))))) + 'error) + ;; success convention for this Lisp program run as part of a larger script - (sb-ext:quit :unix-status 52))) + (sb-ext:quit :unix-status *exit-ok*))) EOF -if [ $? != 52 ]; then - echo test failed: $? - exit 1 -fi +check_status_maybe_lose "run program tests" $? -# success convention -exit 104 +exit $EXIT_TEST_WIN