aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-12-14 05:54:24 +0000
committerMartin Pool <mbp@samba.org>2001-12-14 05:54:24 +0000
commit7753ca1f492e6319436c712f951f83a21949dfb7 (patch)
tree87ebddfd11b566419b71f40d796f130783025c4b /runtests.sh
parentd52a796c39be1d2cb486f1f8b1c55fae28d153cc (diff)
downloadandroid_external_rsync-7753ca1f492e6319436c712f951f83a21949dfb7.tar.gz
android_external_rsync-7753ca1f492e6319436c712f951f83a21949dfb7.tar.bz2
android_external_rsync-7753ca1f492e6319436c712f951f83a21949dfb7.zip
Only show test output if it failed.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtests.sh b/runtests.sh
index 522b096d..ab6f77a5 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -184,7 +184,7 @@ do
echo "----- $testbase starting"
clean_scratch
- if sh $RUNSHFLAGS "$testscript"
+ if sh $RUNSHFLAGS "$testscript" >"$scratchdir/test.log" 2>&1
then
echo "----- $testbase completed successfully"
passed=`expr $passed + 1`
@@ -195,7 +195,9 @@ do
skipped=`expr $skipped + 1`
;;
*)
- echo "----- $testbase failed!"
+ echo "----- $testbase failed: log follows"
+ cat "$scratchdir/test.log"
+ echo "----- $testbase log ends"
failed=`expr $failed + 1`
if [ "x$nopersist" = "xyes" ]
then