Commit 951351a5 authored by Martin Pool's avatar Martin Pool

Don't print test headers unless the test is about to run.

parent 0b21c485
......@@ -20,9 +20,6 @@ cd "$testdir"
for testbase in $test_names
do
echo "------------------------------------------------------------"
echo "----- $testbase running"
testscript="$testbase.test"
if test \! -f "$testscript"
then
......@@ -30,6 +27,9 @@ do
continue
fi
echo "------------------------------------------------------------"
echo "----- $testbase running"
if sh $testscript
then
echo "----- $testbase completed succesfully"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment