summaryrefslogtreecommitdiff
path: root/runtest.pl.in
diff options
context:
space:
mode:
Diffstat (limited to 'runtest.pl.in')
-rwxr-xr-xruntest.pl.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtest.pl.in b/runtest.pl.in
index db58726d..01003c06 100755
--- a/runtest.pl.in
+++ b/runtest.pl.in
@@ -88,7 +88,8 @@ sub runtest
}
# run it
- my $test_res = system("cd $test_mode/test/$t ; ./t | tee ../../../temp.runtest");
+ my $test_res = system("cd $test_mode/test/$t ; ./t 2>&1 " .
+ "| tee ../../../temp.runtest");
# open test results
if(open RESULTS,'temp.runtest')
@@ -114,6 +115,6 @@ sub runtest
}
# delete test results
- unlink 'temp.runtest';
+ # unlink 'temp.runtest';
}