]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix typo in Autotest color test, for dash testsuite failure.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 3 Aug 2010 18:06:28 +0000 (20:06 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 3 Aug 2010 18:06:46 +0000 (20:06 +0200)
* tests/autotest.at (colored test results): Use exit not
Exit.  Fixes test failure with dash 0.5.4.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/autotest.at

index d18a596ac02c0e588753aa7c3e82e99651d8cebc..2cbd690054d256278d4ffd2294d0907cfed4b3fb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-08-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       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  <eblake@redhat.com>
 
        docs: track recent copyright assignment
index 75915a881c08debf536c0052e4e47b1c6c111142..7c0a7dfd7555982225f2fffbacb35dcf9802dbaa 100644 (file)
@@ -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])