aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-unittests.sh
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-04-07 02:18:57 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-04-07 02:18:57 +0000
commit235cfd0f19bf3e2c1f188a816efb1513a2962d40 (patch)
treebb1d07f876fd8e44feeba87b93ac0bed6a84ce85 /test/suite-unittests.sh
parenta0afc5d83281995c3b67732b449dacd18c99772e (diff)
make the unit tests spam their output, in an attempt yo understand wtf the matter with the buildbot is
svn path=/trunk/; revision=21349
Diffstat (limited to 'test/suite-unittests.sh')
-rwxr-xr-xtest/suite-unittests.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/suite-unittests.sh b/test/suite-unittests.sh
index 66170c443a..7b4d3c8d56 100755
--- a/test/suite-unittests.sh
+++ b/test/suite-unittests.sh
@@ -36,12 +36,15 @@ unittests_step_test() {
test_step_failed "make $DUT failed"
return
fi
-
- $DUT > testout.txt 2>&1
+
+ # 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
RETURNVALUE=$?
if [ ! $RETURNVALUE -eq $EXIT_OK ]; then
echo
- cat ./testout.txt
+ #cat ./testout.txt
test_step_failed "exit status of $DUT: $RETURNVALUE"
return
fi