Tests defs: do not print message "Running test $0" anymore.
authorStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 8 Sep 2010 15:50:19 +0000 (17:50 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 10 Nov 2010 22:59:25 +0000 (23:59 +0100)
* tests/defs.in: Printing the message "=== Running test $0" at
the beginning of each tests made sense when Automake used the old
test-driver, which sent all the output directly to stdout/stderr.
Now that the parallel test-driver is used, which saves output of
each test in its correspoding log file, that old message is just
useless noise.

ChangeLog
tests/defs.in

index f543d70..ea09555 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2010-11-10  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
+       Tests defs: do not print message "Running test $0" anymore.
+       * tests/defs.in: Printing the message "=== Running test $0" at
+       the beginning of each tests made sense when Automake used the old
+       test-driver, which sent all the output directly to stdout/stderr.
+       Now that the parallel test-driver is used, which saves output of
+       each test in its correspoding log file, that old message is just
+       useless noise.
+
        Tests defs: rename $curdir -> $testbuilddir
        * tests/defs.in: Rename $curdir to $testbuildir, for clarity and
        consistency with $testsrcdir and $top_testsrcdir.
index caea225..b9765d2 100644 (file)
@@ -49,8 +49,6 @@ else
   case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
 fi
 
-echo "=== Running test $0"
-
 # The name of the current test (without the `.test' suffix.)
 me=`echo "$0" | sed -e 's,.*[\\/],,;s/\.test$//'`