summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-12-31 12:58:59 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-12-31 12:58:59 +0100
commit162f61c8f8fc7ee14c9597faa5ac7e6695e52e8d (patch)
treed39fc72e928f5a653c2ba29ace215762e87d1465 /t
parent506f6ce8326e4a96525700eb8052919c9294a06e (diff)
downloadautomake-162f61c8f8fc7ee14c9597faa5ac7e6695e52e8d.tar.gz
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 <stefano.lattarini@gmail.com>
Diffstat (limited to 't')
-rw-r--r--t/list-of-tests.mk3
-rwxr-xr-xt/txinfo-add-missing-and-dist.sh (renamed from t/txinfo-add-missing2.sh)0
-rwxr-xr-xt/txinfo-add-missing.sh33
3 files changed, 1 insertions, 35 deletions
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
index 46b791ab7..46b791ab7 100755
--- a/t/txinfo-add-missing2.sh
+++ b/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 <http://www.gnu.org/licenses/>.
-
-# 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
-
-: