aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-04-07 04:35:39 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-04-07 04:35:39 +0000
commitc9360bf8539975edb7d2913f0349504339bad04e (patch)
tree5d33a86c2762041e64d813e0dfb53fda861ff6ce /test
parent235cfd0f19bf3e2c1f188a816efb1513a2962d40 (diff)
that didn't help. try skipping the exntest to see if it's just that one.
svn path=/trunk/; revision=21350
Diffstat (limited to 'test')
-rwxr-xr-xtest/suite-unittests.sh9
1 files changed, 3 insertions, 6 deletions
diff --git a/test/suite-unittests.sh b/test/suite-unittests.sh
index 7b4d3c8d56..901eebb711 100755
--- a/test/suite-unittests.sh
+++ b/test/suite-unittests.sh
@@ -37,14 +37,11 @@ unittests_step_test() {
return
fi
- # temporary hack to disable output redirection, in the hope
- # this will shed some light on the mysterious windows buildbot failures.
- $DUT
-# > testout.txt 2>&1
+ $DUT > testout.txt 2>&1
RETURNVALUE=$?
if [ ! $RETURNVALUE -eq $EXIT_OK ]; then
echo
- #cat ./testout.txt
+ cat ./testout.txt
test_step_failed "exit status of $DUT: $RETURNVALUE"
return
fi
@@ -74,7 +71,7 @@ unittests_cleanup_step() {
unittests_suite() {
test_step_set_pre unittests_cleanup_step
test_step_set_post unittests_cleanup_step
- test_step_add "exntest" unittests_step_exntest
+ #test_step_add "exntest" unittests_step_exntest
test_step_add "reassemble_test" unittests_step_reassemble_test
test_step_add "tvbtest" unittests_step_tvbtest
}