]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: avoid spurious failure due to "split" info files
authorStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 2 Jan 2013 14:43:13 +0000 (15:43 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 2 Jan 2013 14:43:13 +0000 (15:43 +0100)
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 <stefano.lattarini@gmail.com>
t/txinfo-makeinfo-error-no-clobber.sh

index 6b7323e60d1f400f754372430800abf351abbec3..41f627f52fe3ee447d79c80cdb4b240bd9706d69 100755 (executable)
@@ -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
 
 :