summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-04-05 16:10:05 +0200
committerJim Meyering <meyering@redhat.com>2010-04-05 16:10:05 +0200
commit50e8c42eba9bd52548e0de3fec113ab2ea1e0f4b (patch)
tree1341009496779efd9e8d4ac74836ffbb25190c96 /tests
parentf8d21f5b579e74a1e41390847d0b71c3356870ca (diff)
downloadgnulib-50e8c42eba9bd52548e0de3fec113ab2ea1e0f4b.tar.gz
init.sh: fix typo
* tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
Diffstat (limited to 'tests')
-rw-r--r--tests/init.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/init.sh b/tests/init.sh
index 23ab131ced..3e3ea444f1 100644
--- a/tests/init.sh
+++ b/tests/init.sh
@@ -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; }