diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-04-06 13:12:25 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-04-06 21:29:30 +0200 |
commit | 8a5096d150cf9803b8963768b7366cd68edcce03 (patch) | |
tree | a49c0e54876b8b9877d7ca2df386377e7b6037d1 /t/install-info-dir.sh | |
parent | f8e822bbc197f01fc722aa6def7cddb4182e3c66 (diff) | |
download | automake-8a5096d150cf9803b8963768b7366cd68edcce03.tar.gz |
tests: rename 'tests/' => 't/', '*.test' => '*.sh'
When we (soon) convert the Automake testsuite to a non-recursive
make setup, we'll have to fix the entries of $(TESTS) to be
prepended with the subdirectory they are in; this will increase
the length of $(TESTS), and thus increase the possibility of
exceeding the command-line length limits on some systems (most
notably, MinGW/MSYS). See automake bug#7868 for more information.
Thus we rename the 'tests/' subdirectory to 't/', and each 'x.test'
script in there to 'x.sh'; this way, the $(TESTS) entry 'foo.test'
will become 't/foo.sh', which have the same number of characters.
* tests/: Rename ...
* t/: ... to this.
* t/*.test: Rename ...
* t/*.sh: ... to this.
* t/.gitignore: Removed as obsolete.
* t/defs: Adjust.
* t/gen-testsuite-part: Likewise.
* t/list-of-tests.mk: Likewise.
* t/ccnoco.sh: Likewise.
* t/ccnoco3.sh: Likewise.
* t/self-check-cleanup.tap: Likewise.
* t/self-check-dir.tap: Likewise.
* t/self-check-me.tap: Likewise.
* t/self-check-reexec.tap: Likewise.
* README: Likewise.
* bootstrap: Likewise
* configure.ac: Likewise.
* Makefile.am: Likewise.
* .gitignore: Likewise.
* syntax-check.mk: Likewise.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/install-info-dir.sh')
-rwxr-xr-x | t/install-info-dir.sh | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/t/install-info-dir.sh b/t/install-info-dir.sh new file mode 100755 index 000000000..c76f424ad --- /dev/null +++ b/t/install-info-dir.sh @@ -0,0 +1,176 @@ +#! /bin/sh +# Copyright (C) 2011-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/>. + +# Checks on the 'install-info' target. +# Details about the individual checks' purposes and motivations are +# inlined, below. + +# FIXME: this test is a good candidate for a conversion to TAP, +# FIXME: and could be merged with 'txinfo27.test'. + +required=makeinfo +. ./defs || Exit 1 + +cwd=`pwd` || fatal_ "cannot get current working directory" + +mkdir bin +saved_PATH=$PATH; export saved_PATH +PATH=$cwd/bin$PATH_SEPARATOR$PATH; export PATH + +cat >> configure.ac <<'END' +AC_OUTPUT +END + +cat > Makefile.am << 'END' +info_TEXINFOS = foo.texi +END + +cat > foo.texi << 'END' +\input texinfo +@setfilename foo.info +@c All the following directives might be required to allow older +@c versions of the 'install-info' program (e.g., version 4.8) to +@c create the 'dir' index file in ${infodir}. Don't remove them. +@settitle foo +@dircategory Dummy utilities +@direntry +* Foo: (foo). Does nothing at all, but has a nice name. +@end direntry +@node Top +Hello world! +@bye +END + +$ACLOCAL +$AUTOMAKE -a +$AUTOCONF + +instdir=_inst +destdir=_dest + +./configure --prefix="$cwd/$instdir" --infodir="$cwd/$instdir/info" + +$MAKE info +test -f foo.info + +if install-info --version; then + have_installinfo=yes +else + have_installinfo=no +fi + +# The 'install-info' target updates the '${infodir}/dir' file +# by default (if the 'install-info' program is available). +# This should happen in a normal as well as in a DESTDIR installation. +if test $have_installinfo = yes; then + + $MAKE install-info + test -f $instdir/info/foo.info + test -f $instdir/info/dir + $FGREP 'Does nothing at all, but has a nice name' $instdir/info/dir + + $MAKE uninstall + test ! -f $instdir/info/foo.info + $FGREP 'but has a nice name' $instdir/info/dir && Exit 1 + + dir="$destdir/$cwd/$instdir/info" + + $MAKE DESTDIR="$cwd/$destdir" install-info + test -f "$dir"/foo.info + test -f "$dir"/dir + $FGREP 'Does nothing at all, but has a nice name' "$dir"/dir + $MAKE DESTDIR="$cwd/$destdir" uninstall + test ! -f "$dir"/foo.info + $FGREP 'but has a nice name' "$dir"/dir && Exit 1 + + unset dir + +fi + +rm -rf $instdir $destdir + +# The 'install-info' target doesn't fail if the 'install-info' +# program is not available. +cat > bin/install-info <<'END' +#!/bin/sh +echo error from install-info >&2 +exit 127 +END +chmod a+x bin/install-info +$MAKE install-info >output 2>&1 || { cat output; Exit 1; } +cat output +test -f $instdir/info/foo.info +test ! -f $instdir/info/dir +grep 'error from install-info' output && Exit 1 + +rm -rf $instdir output + +if test $have_installinfo = yes; then + # The 'install-info' target doesn't try to guess whether the 'install-info' + # is the GNU or debian version. + unindent > bin/install-info <<'END' + #!/bin/sh + set -e; set -u; + for fd in 1 2; do + for str in dpkg debian Debian; do + eval "echo This is $str install-info >&$fd" + done + done + PATH=$saved_PATH; export PATH + exec install-info ${1+"$@"} +END + $MAKE install-info + test -f $instdir/info/foo.info + test -f $instdir/info/dir + $MAKE uninstall + test ! -f $instdir/info/foo.info + test -f $instdir/info/dir + $FGREP 'but has a nice name' $instdir/info/dir && Exit 1 + : For shells with busted 'set -e'. +fi + +rm -rf $instdir bin/install-info + +# The 'AM_UPDATE_INFO_DIR' environment variable can be used to +# prevent the creation or update of the '${infodir}/dir' file, +# if set to a "no" value. +for val in no NO n; do + rm -rf $instdir + env AM_UPDATE_INFO_DIR="$val" $MAKE install-info + test -f $instdir/info/foo.info + test ! -f $instdir/info/dir +done + +$MAKE install-info +chmod a-w $instdir/info/dir +for val in no NO n; do + env AM_UPDATE_INFO_DIR="$val" $MAKE uninstall + $FGREP 'Does nothing at all, but has a nice name' $instdir/info/dir +done + +if test $have_installinfo = yes; then + for val in 'yes' 'who cares!'; do + rm -rf $instdir + env AM_UPDATE_INFO_DIR="$val" $MAKE install-info + test -f $instdir/info/foo.info + test -f $instdir/info/dir + env AM_UPDATE_INFO_DIR="$val" $MAKE uninstall + test ! -f $instdir/info/foo.info + $FGREP 'but has a nice name' $instdir/info/dir && Exit 1 + done +fi + +: |