summaryrefslogtreecommitdiff
path: root/test/run_test.sh
diff options
context:
space:
mode:
authoranonymous <local@localhost>2010-09-27 02:15:47 +0000
committeranonymous <local@localhost>2010-09-27 02:15:47 +0000
commit7d75a366cd49def1d95b2e1049d24441096c4cb4 (patch)
treef235471cddd32c2407229176395cf68052cbd51a /test/run_test.sh
parent780f66a491a0e489afeb249f8067d470dbd77709 (diff)
downloadlibcxxrt-7d75a366cd49def1d95b2e1049d24441096c4cb4.tar.gz
libcxxrt-7d75a366cd49def1d95b2e1049d24441096c4cb4.tar.bz2
libcxxrt-7d75a366cd49def1d95b2e1049d24441096c4cb4.tar.xz
output argument was added in run_test script
Diffstat (limited to 'test/run_test.sh')
-rwxr-xr-xtest/run_test.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_test.sh b/test/run_test.sh
index 42795a7..7a4e724 100755
--- a/test/run_test.sh
+++ b/test/run_test.sh
@@ -1,4 +1,5 @@
test_command=$1
expected_output=$2
-$test_command > test_log 2>&1
+test_log=$3
+$test_command > $test_log 2>&1
diff test_log $expected_output