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/distcheck-outdated-m4.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/distcheck-outdated-m4.sh')
-rwxr-xr-x | t/distcheck-outdated-m4.sh | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/t/distcheck-outdated-m4.sh b/t/distcheck-outdated-m4.sh new file mode 100755 index 000000000..71ae3dd21 --- /dev/null +++ b/t/distcheck-outdated-m4.sh @@ -0,0 +1,137 @@ +#! /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/>. + +# Test that we can define a distcheck-hook to diagnose outdated m4 +# files in a dist tarball (interaction with '--install'). +# See automake bug#9037. + +. ./defs || Exit 1 + +cwd=`pwd` || fatal_ "cannot get current working directory" + +cp "$am_testauxdir"/distcheck-hook-m4.am . \ + || fatal_ "cannot fetch makefile fragment 'distcheck-hook-m4.am'" + +cat > Makefile.am << 'END' +## The lack of '--install' here is meant. +ACLOCAL_AMFLAGS = -I m4 +include $(srcdir)/distcheck-hook-m4.am +END + +cat >> configure.ac << 'END' +AC_OUTPUT +MY_FOO +MY_BAR +MY_BAZ +END + +mkdir m4 acdir +echo 'AC_DEFUN([MY_FOO], [:])' > m4/foo.m4 +echo 'AC_DEFUN([MY_BAR], [:])' > acdir/bar.m4 +cat > acdir/baz.m4 << 'END' +# serial 1 +AC_DEFUN([MY_BAZ], [:]) +END + +ACLOCAL="$ACLOCAL --system-acdir=$cwd/acdir"; export ACLOCAL + +# The use of '--install' here won't help when the installed file '.m4' +# will become out-of-date w.r.t. the one in the system acdir. +$ACLOCAL -I m4 --install +$AUTOCONF +$AUTOMAKE + +./configure +$MAKE distcheck # Sanity check. + +check_no_spurious_error () +{ + $EGREP -i 'mkdir:|:.*(permission|denied)' output && Exit 1 + # On failure, some make implementations (such as Solaris make) print the + # whole failed recipe on stdout. The first grep works around this. + grep -v 'rm -rf ' output | grep -i 'autom4te.*\.cache' && Exit 1 + : To placate 'set -e'. +} + +# We start to use a new "third-party" macro in a new version +# of a pre-existing third-party m4 file, but forget to re-run +# "aclocal --install" by hand, relying on automatic remake +# rules. Our distcheck-hook should catch this too. +echo MY_ZARDOZ >> configure.ac + +cat > acdir/baz.m4 << 'END' +# serial 2 +AC_DEFUN([MY_BAZ], [:]) +AC_DEFUN([MY_ZARDOZ], [:]) +END + +$MAKE # Rebuild configure and makefiles. +$MAKE distcheck >output 2>&1 && { cat output; Exit 1; } +cat output + +$EGREP "required m4 file.* outdated.* baz.m4( |$)" output +check_no_spurious_error +# Check that we don't complain for files that aren't outdated. +$EGREP " (foo|bar).m4" output && Exit 1 + +# Now we again use '--install' explicitly, and "make distcheck" +# should pass. +$ACLOCAL -I m4 --install +using_gmake || $MAKE Makefile +$MAKE distcheck + +# Similar to what have been done above, but this time we: +# - use ACLOCAL_PATH, and +# - do not add the use of a new macro. + +echo MY_FNORD >> configure.ac + +mkdir pth +cat > pth/fnord.m4 << 'END' +# serial 1 +AC_DEFUN([MY_FNORD], [:]) +END + +ACLOCAL_PATH="$cwd/pth"; export ACLOCAL_PATH + +# The explicit use of '--install' here won't help when the installed file +# '.m4' will become out-of-date w.r.t. the one in the system acdir. +$ACLOCAL -I m4 --install +using_gmake || $MAKE Makefile +$MAKE distcheck + +# Only increase serial number, without changing the other contents; this +# is deliberate. +cat > pth/fnord.m4 << 'END' +# serial 2 +AC_DEFUN([MY_FNORD], [:]) +END + +$MAKE # Rebuild configure and makefiles. +$MAKE distcheck >output 2>&1 && { cat output; Exit 1; } +cat output +$EGREP "required m4 file.* outdated.* fnord.m4( |$)" output +check_no_spurious_error +# Check that we don't complain for files that aren't outdated. +$EGREP " (foo|bar|baz).m4" output && Exit 1 + +# Now we again use '--install' explicitly, and "make distcheck" +# should pass. +$ACLOCAL -I m4 --install +using_gmake || $MAKE Makefile +$MAKE distcheck + +: |