Use one log file per test. This should ease the debugging.

The big testsuite.log is kept.
This commit is contained in:
nekral-guest
2008-01-06 19:32:49 +00:00
parent abbf45f14f
commit fe6fa70efe

View File

@@ -12,13 +12,14 @@ failed_tests=""
run_test()
{
if $1 >> testsuite.log
if $1 > $1.log
then
succeded=$((succeded+1))
else
failed=$((failed+1))
failed_tests="$failed_tests $1"
fi
cat $1.log >> testsuite.log
}
> testsuite.log