From: David Lichteblau Date: Fri, 2 Sep 2011 19:30:25 +0000 (+0200) Subject: Fix I/O redirection of script.test.sh X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=cd470a05b55209cf32072274b7e096dcd6077097;p=sbcl.git Fix I/O redirection of script.test.sh With this fix, "run-tests.sh | tee" passes again on Linux. Thanks to Fare Rideau for the report. --- diff --git a/tests/script.test.sh b/tests/script.test.sh index 19fcc5f..9b7e104 100644 --- a/tests/script.test.sh +++ b/tests/script.test.sh @@ -42,9 +42,9 @@ cat > $tmpscript </dev/null check_status_maybe_lose "--script exit status from QUIT when stdout closed" $? 3 "(as given)" -run_sbcl --load $tmpscript +run_sbcl --load $tmpscript >/dev/null check_status_maybe_lose "--load exit status from QUIT when stdout closed" $? 3 "(as given)" cat > $tmpscript <