init.sh: fix typo
authorJim Meyering <meyering@redhat.com>
Mon, 5 Apr 2010 14:10:05 +0000 (16:10 +0200)
committerJim Meyering <meyering@redhat.com>
Mon, 5 Apr 2010 14:10:05 +0000 (16:10 +0200)
* tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.

ChangeLog
tests/init.sh

index b0dfa6b..d92487b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2010-04-05  Jim Meyering  <meyering@redhat.com>
 
+       init.sh: fix typo
+       * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
+
        init.sh: make it easier for a test script to write to the tty, ...
        when using automake's parallel-tests mode.
        * tests/init.sh (stderr_fileno_): Define overridable variable.
index 23ab131..3e3ea44 100644 (file)
@@ -102,7 +102,7 @@ Exit () { set +e; (exit $1); exit $1; }
 # of TESTS_ENVIRONMENT in your tests/Makefile.am file.
 # This is useful when using automake's parallel tests mode, to print
 # the reason for skip/failure to console, rather than to the .log files.
-${stderr_fileno_=2}
+${stderr_fileno_=2}
 
 warn_() { echo "$@" 1>&$stderr_fileno_; }
 fail_() { warn_ "$ME_: failed test: $@"; Exit 1; }