diff options
author | 2009-02-23 15:29:23 +0000 | |
---|---|---|
committer | 2009-02-23 15:29:23 +0000 | |
commit | 2ba32788aa1339c7fa607b75c2d1ecd139a2e3a1 (patch) | |
tree | a7a044aac71811d61ec9b386ac6d1f1d06141708 /test/run_test.sh | |
parent | 0af5642bb7df3842c2c153950bf957f7b359a793 (diff) | |
download | paludis-2ba32788aa1339c7fa607b75c2d1ecd139a2e3a1.tar.gz paludis-2ba32788aa1339c7fa607b75c2d1ecd139a2e3a1.tar.xz |
Don't wrap redirected output
Diffstat (limited to 'test/run_test.sh')
-rwxr-xr-x | test/run_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index 001ad5fa6..9afa26799 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -44,7 +44,7 @@ if [[ 0 != ${code} ]] ; then out=`pwd`/${testname#./}.epicfail echo ">>> rerunning test ${testname} verbosely redirected to ${out}" env PALUDIS_TESTS_RERUN_VERBOSELY=no PALUDIS_TESTS_KEEP_STDERR=yes \ - PALUDIS_TESTS_KEEP_LOG=yes $0 $@ > $out 2>&1 + PALUDIS_TESTS_KEEP_LOG=yes TEST_OUTPUT_WRAPPER= $0 $@ > $out 2>&1 echo ">>> saved output of verbose ${testname} rerun to ${out}" fi echo ">>> exiting with error for test ${testname}" |