From: Ralf Wildenhues Date: Tue, 3 Aug 2010 18:06:28 +0000 (+0200) Subject: Fix typo in Autotest color test, for dash testsuite failure. X-Git-Tag: v2.68~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=114dc91c10feb055162f3bee85330acd31ed50fc;p=thirdparty%2Fautoconf.git Fix typo in Autotest color test, for dash testsuite failure. * tests/autotest.at (colored test results): Use exit not Exit. Fixes test failure with dash 0.5.4. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index d18a596ac..2cbd69005 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-08-03 Ralf Wildenhues + + Fix typo in Autotest color test, for dash testsuite failure. + * tests/autotest.at (colored test results): Use exit not + Exit. Fixes test failure with dash 0.5.4. + 2010-08-02 Eric Blake docs: track recent copyright assignment diff --git a/tests/autotest.at b/tests/autotest.at index 75915a881..7c0a7dfd7 100644 --- a/tests/autotest.at +++ b/tests/autotest.at @@ -1571,7 +1571,7 @@ std=`printf '\033@<:@m'` # GNU or BSD 'grep -a' works on files, but is not portable. AT_CHECK([case `echo "$std" | grep .` in #'' restore font-lock $std) :;; - *) Exit 77;; + *) exit 77;; esac], [], [ignore], [], [echo "grep can't parse nonprinting characters" >&2])