aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-unittests.sh
diff options
context:
space:
mode:
authorrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-07 02:18:57 +0000
committerrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-07 02:18:57 +0000
commitc7486e1224627811f618ccd12c6b047022a4122e (patch)
treebb1d07f876fd8e44feeba87b93ac0bed6a84ce85 /test/suite-unittests.sh
parent82c4003cc215b5b8382e6e7489f60a2b762d9ab0 (diff)
make the unit tests spam their output, in an attempt yo understand wtf the matter with the buildbot is
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21349 f5534014-38df-0310-8fa8-9805f1628bb7
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