tests: fix spurious failure with older autoconf
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 16 Feb 2012 09:58:03 +0000 (10:58 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 26 Mar 2012 12:27:31 +0000 (14:27 +0200)
Cherry picked from commit v1.11-1950-gba5a89b of 16-02-2012.

* 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. See also automake bug#11093.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
tests/conffile-leading-dot.test

index 1d3d12f..1ee153f 100755 (executable)
@@ -57,6 +57,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
 
 :