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>
./configure
$MAKE
-# Feign more info files.
-: > main.info-1
-: > sub/main.info-1
-
# Break main.texi.
$sleep
cp main.texi main.old
# 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
$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
: