From: Stefano Lattarini Date: Wed, 2 Jan 2013 14:43:13 +0000 (+0100) Subject: tests: avoid spurious failure due to "split" info files X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8114a01dcb024711cf33d922f67a7b3a6cb642e;p=thirdparty%2Fautomake.git tests: avoid spurious failure due to "split" info files This is a cleanup after the recent merge of 'master' into 'ng/master'. * t/txinfo-makeinfo-error-no-clobber.sh: "Split" info files are no longer supported since commit 'v1.12.2-901-gdd603e2', so don't expect them to work. Signed-off-by: Stefano Lattarini --- diff --git a/t/txinfo-makeinfo-error-no-clobber.sh b/t/txinfo-makeinfo-error-no-clobber.sh index 6b7323e60..41f627f52 100755 --- a/t/txinfo-makeinfo-error-no-clobber.sh +++ b/t/txinfo-makeinfo-error-no-clobber.sh @@ -45,10 +45,6 @@ $AUTOCONF ./configure $MAKE -# Feign more info files. -: > main.info-1 -: > sub/main.info-1 - # Break main.texi. $sleep cp main.texi main.old @@ -64,7 +60,6 @@ END # makeinfo will bail out, but we should conserve the old info files. $MAKE && exit 1 test -f main.info -test -f main.info-1 # Restore main.texi, and break sub/main.texi. cp main.texi sub/main.texi @@ -72,8 +67,6 @@ mv main.old main.texi $MAKE && exit 1 test -f main.info test -f sub/main.info -test ! -e main.info-1 test -f sub/main.info -test -f sub/main.info-1 :