X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fstream.test.sh;h=eed2e8515be1bae567594e914a5c41a2b33c4a77;hb=026aef761bfe2e191fa38be357da233aacd6119e;hp=3c5e38e1817f99b369ca30c297c7835b65a9a805;hpb=b5368af8c66b7bc92af74a884a31eabb2b1e7e16;p=sbcl.git diff --git a/tests/stream.test.sh b/tests/stream.test.sh index 3c5e38e..eed2e85 100644 --- a/tests/stream.test.sh +++ b/tests/stream.test.sh @@ -40,7 +40,7 @@ cat > $tmpfilename < $tmpfilename.out check_status_maybe_lose bivalent-standard-output $? -test_output=$(cat $tmpfilename.out) +test_output=`cat $tmpfilename.out` rm -f $tmpfilename.out if [ 'Bivalent *STANDARD-OUTPUT*' != "$test_output" ]; then echo "bad test output: '$test_output'" @@ -56,7 +56,7 @@ cat > $tmpfilename < $tmpfilename.out check_status_maybe_lose bivalent-error-output $? -test_output=$(cat $tmpfilename.out) +test_output=`cat $tmpfilename.out` rm -f $tmpfilename.out if [ 'Bivalent *ERROR-OUTPUT*' != "$test_output" ]; then echo "bad test output: '$test_output'"