From: Stefano Lattarini Date: Thu, 16 Feb 2012 09:58:03 +0000 (+0100) Subject: tests: fix spurious failure with older autoconf X-Git-Tag: ng-0.5a~9^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba5a89bec39d85b9033b9a2f7193221b7a2ba3db;p=thirdparty%2Fautomake.git tests: fix spurious failure with older autoconf * tests/conffile-leading-dot.test: Relax grepping of 'config.status' stderr, to cater for older autoconf. Issue revealed by a failure with autoconf 2.63 on Cygwin 1.5.25. --- diff --git a/tests/conffile-leading-dot.test b/tests/conffile-leading-dot.test index 382124e25..bfe81b5e0 100755 --- a/tests/conffile-leading-dot.test +++ b/tests/conffile-leading-dot.test @@ -55,6 +55,6 @@ echo foo = bazbazbaz > Makefile.am # giving a bogus warning. $MAKE 2>stderr && { cat stderr >&2 Exit 1; } cat stderr >&2 -grep "config\\.status:.*invalid argument.*[\`\"']Makefile[\`\"']" stderr +grep "config\\.status:.*invalid argument.*Makefile" stderr :