From cd470a05b55209cf32072274b7e096dcd6077097 Mon Sep 17 00:00:00 2001 From: David Lichteblau Date: Fri, 2 Sep 2011 21:30:25 +0200 Subject: [PATCH] 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. --- tests/script.test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 <