From: Stefano Lattarini Date: Sat, 2 Jun 2012 13:25:29 +0000 (+0200) Subject: [ng] tests: fix a spurious failure X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebdce60d0f785d276288057858499368b03d8561;p=thirdparty%2Fautomake.git [ng] tests: fix a spurious failure * t/txinfo17.sh (texinfo.texi): Use "foobar", not "example", as the argument of the @setfilename call, to ensure we don't get false positives in the later grepping checks. Signed-off-by: Stefano Lattarini --- diff --git a/t/txinfo17.sh b/t/txinfo17.sh index 1de7e9a3f..a1fc0ec99 100755 --- a/t/txinfo17.sh +++ b/t/txinfo17.sh @@ -27,7 +27,7 @@ cat > texinfo.texi << 'END' @setfilename texinfo ... @verbatim -@setfilename example.info +@setfilename foobar.info @end verbatim ... END @@ -35,5 +35,7 @@ END $ACLOCAL $AUTOMAKE --add-missing -grep 'example' Makefile.in && Exit 1 +grep 'foobar' Makefile.in && Exit 1 grep 'texinfo:' Makefile.in + +: