summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2012-10-23 09:21:32 +1100
committerNeilBrown <neilb@suse.de>2012-10-23 09:21:32 +1100
commit1dc837e4edc805819a1ff40add3d0beecfeecdbb (patch)
treeb47b64d27080d2001a57b0ae41c5e298c47c7859 /test
parent45e34015b6f3c9deb4f489095eeedc9343a34b5e (diff)
test: keep separate log file for each failed test.
If a test failed when --keep-going is selected, give the log file a name based on the test name, so that all the logs can be examined afterwards. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'test')
-rwxr-xr-xtest7
1 files changed, 6 insertions, 1 deletions
diff --git a/test b/test
index e3133850..3f8515fe 100755
--- a/test
+++ b/test
@@ -232,7 +232,12 @@ do_test() {
echo "succeeded"
_fail=0
else
- echo "FAILED - see $targetdir/log for details"
+ log=log
+ if [ $exitonerror == 0 ]; then
+ log=log-`basename $_script`
+ mv $targetdir/log $targetdir/$log
+ fi
+ echo "FAILED - see $targetdir/$log for details"
_fail=1
fi
if [ "$savelogs" == "1" ]; then