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 /tests/primary-prefix-couples-documented-valid.test | |
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 'tests/primary-prefix-couples-documented-valid.test')
-rwxr-xr-x | tests/primary-prefix-couples-documented-valid.test | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/tests/primary-prefix-couples-documented-valid.test b/tests/primary-prefix-couples-documented-valid.test deleted file mode 100755 index 7b0021abb..000000000 --- a/tests/primary-prefix-couples-documented-valid.test +++ /dev/null @@ -1,87 +0,0 @@ -#! /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/>. - -# Check that the "uncommon" prefix/primary combinations used in -# examples in the Automake manual do not cause obvious errors. -# Please keep this test in sync with the automake manual. - -. ./defs || Exit 1 - -cat >> configure.ac <<'END' -AC_PROG_CC -AM_PROG_AR -AC_PROG_RANLIB -AC_PROG_LIBTOOL -AM_PROG_GCJ -AM_PATH_PYTHON -END - -# Fake libtool availability. -: > ltmain.sh -cat > acinclude.m4 <<'END' -AC_DEFUN([AC_PROG_LIBTOOL], - [AC_SUBST([LIBTOOL], [:])]) -END - -cat > Makefile.am <<'END' -xmldir = $(datadir)/xml -xml_DATA = file.xml - -data_DATA = file1 file2 file3 -data2dir = $(datadir) -data2_DATA = file4 file5 file6 - -aclocaldir = $(datadir)/aclocal -aclocal_DATA = mymacro.m4 myothermacro.m4 - -imagesdir = $(pkgdatadir)/images -soundsdir = $(pkgdatadir)/sounds -dist_images_DATA = images/vortex.pgm -dist_sounds_DATA = sounds/whirl.ogg - -lisp_DATA = file1.el file2.el - -javadir = $(datadir)/java -dist_java_JAVA = a.java b.java c.java - -pkgpython_PYTHON = foo.py - -pyexec_LTLIBRARIES = quaternion.la -quaternion_la_SOURCES = quaternion.c support.c support.h -quaternion_la_LDFLAGS = -avoid-version -module - -myexecbindir = /exec -myexecbin_PROGRAMS = zardoz - -foodir = $(prefix)/foo -barexecdir = $(prefix)/bar/binaries -foo_SCRIPTS = foo.sh -barexec_SCRIPTS = quux.pl - -my_execbindir = $(pkglibdir) -my_doclibdir = $(docdir) -my_execbin_PROGRAMS = foo -my_doclib_LIBRARIES = libquux.a -END - -$ACLOCAL - -# Both these two invocations are meant. -# They exercise both code paths concerning auxiliary files. -$AUTOMAKE -a -$AUTOMAKE - -: |