From: Stefano Lattarini Date: Mon, 31 Dec 2012 11:58:59 +0000 (+0100) Subject: tests: remove a redundant texinfo test X-Git-Tag: v1.13.1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=162f61c8f8fc7ee14c9597faa5ac7e6695e52e8d;p=thirdparty%2Fautomake.git tests: remove a redundant texinfo test * t/txinfo-add-missing.sh: This one, its checks being already covered by the more extensive 't/add-missing.tap' test. * t/txinfo-add-missing2.sh: Rename ... * t/txinfo-add-missing-and-dist.sh: Like this. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini --- diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index eb2a1ec96..7b10d7cda 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -1162,8 +1162,7 @@ t/txinfo-no-extra-dist.sh \ t/txinfo-suffix-less-info.sh \ t/txinfo-unrecognized-info-suffix.sh \ t/txinfo-other-suffixes.sh \ -t/txinfo-add-missing.sh \ -t/txinfo-add-missing2.sh \ +t/txinfo-add-missing-and-dist.sh \ t/txinfo-no-repeated-targets.sh \ t/txinfo10.sh \ t/txinfo-subdir-pr343.sh \ diff --git a/t/txinfo-add-missing2.sh b/t/txinfo-add-missing-and-dist.sh similarity index 100% rename from t/txinfo-add-missing2.sh rename to t/txinfo-add-missing-and-dist.sh diff --git a/t/txinfo-add-missing.sh b/t/txinfo-add-missing.sh deleted file mode 100755 index 8d720547b..000000000 --- a/t/txinfo-add-missing.sh +++ /dev/null @@ -1,33 +0,0 @@ -#! /bin/sh -# Copyright (C) 1998-2012 Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Test to make sure texinfo.tex correctly installed by -a. Bug report -# by Per Cederqvist. - -. test-init.sh - -cat > Makefile.am << 'END' -info_TEXINFOS = textutils.texi -END - -echo '@setfilename textutils.info' > textutils.texi - -$ACLOCAL -$AUTOMAKE -a - -test -f texinfo.tex - -: