diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-08 19:08:11 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-08 19:08:11 +0200 |
commit | 7de7d19e6f8b88d7dc35be519430ac1f27e4ea59 (patch) | |
tree | 6d50ca34fedaa019feb4ce33db6a2c38d1ece3b7 /t/info.sh | |
parent | c3e7ee629804d4d3b3338afd1cd54cab92903f79 (diff) | |
download | automake-7de7d19e6f8b88d7dc35be519430ac1f27e4ea59.tar.gz |
tests: remove an obsolete, no-op test script
* t/info.sh: This: it tried to operate by checking the contents of the
variable '$(INFOS)', but that is not even defined (and probably has been
obsolete for quite a long time). Since other tests already do thorough
testing of the Texinfo support, just remove this test.
* t/list-of-tests.mk: Adjust.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/info.sh')
-rwxr-xr-x | t/info.sh | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/t/info.sh b/t/info.sh deleted file mode 100755 index e00e9e97c..000000000 --- a/t/info.sh +++ /dev/null @@ -1,44 +0,0 @@ -#! /bin/sh -# Copyright (C) 1996-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 info files are distributed correctly. -# FIXME: This test is probably obsoleted, or wrong. The generated -# Makefile.in seems not to define any 'INFOS' variable! - -. ./defs || exit 1 - -cat > Makefile.am << 'END' -info_TEXINFOS = foo.texi -END - -echo '@setfilename foo.info' > foo.texi -: > texinfo.tex - -$ACLOCAL -$AUTOMAKE - -for i in $(grep '^INFOS =' Makefile.in | sed -e 's/^INFOS = //'); do - echo $i - case "$i" in - foo*) - ;; - *) - exit 1 - ;; - esac -done - -: |