From: Martin Pool Date: Thu, 16 Aug 2001 09:35:21 +0000 (+0000) Subject: Don't print test headers unless the test is about to run. X-Git-Tag: mbp_bk_export0~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=951351a537b0b8f7148a9c53ca329c2f5302ee3f;p=thirdparty%2Frsync.git Don't print test headers unless the test is about to run. --- diff --git a/testsuite/master.test b/testsuite/master.test index 446263c2..8c34ee8e 100755 --- a/testsuite/master.test +++ b/testsuite/master.test @@ -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"