]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] tests: fix a spurious failure
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 2 Jun 2012 13:25:29 +0000 (15:25 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 2 Jun 2012 13:27:25 +0000 (15:27 +0200)
* 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 <stefano.lattarini@gmail.com>
t/txinfo17.sh

index 1de7e9a3f376133732420c4a444a0418460bfc9f..a1fc0ec999e4958691a7a62d35ce91b8072630e9 100755 (executable)
@@ -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
+
+: