* 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 <[email protected]> --- t/txinfo17.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/txinfo17.sh b/t/txinfo17.sh index 1de7e9a..a1fc0ec 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 + +: -- 1.7.9.5
