diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2010-06-10 00:15:04 +0200 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-06-12 14:12:47 +0200 |
commit | 96286138989c8e3d32d00c7373ccd154e6638695 (patch) | |
tree | 39f3250a776f95c07505e46fcc596bc525e42852 /tests/substtarg.test | |
parent | b563243e60d1886f639b2f6741340e7e1c0d0aef (diff) | |
download | automake-96286138989c8e3d32d00c7373ccd154e6638695.tar.gz |
Modernize, improve and/or fix various test scripts.
* tests/symlink3.test: Deleted, separated into two new, more
complete tests ...
* tests/forcemiss.test: ... this one ...
* tests/forcemiss2.test: ... and this one.
* tests/symlink2.test: Enable `errexit' shell flag, make test
stricter, and skip it if symlink creation is not supported.
* tests/postproc.test: Enable `errexit' shell flag, related
changes, and a couple of unrelated cosmetic changes.
* tests/recurs.test: Use the `configure.in' stub created by
`./defs', rather than writing one from scratch. Make grepping
of Automake stderr slighty stricter.
* tests/substtarg.test: Likewise.
* tests/strip.test: Likewise, and move the call to `set -e'
earlier (just after the inclusion of `./defs'). Also, make sure
that the script installed by `make install-script' is equal to
the original one.
* tests/substref.test: Use the `configure.in' stub created by
`./defs', rather than writing one from scratch. Move the call
to `set -e' earlier (just after the inclusion of `./defs').
Avoid to explicitly export CC for configure (that's already done
in ./defs). Avoid potential problems with unpredictable make
output. Finally, make grepping of Makefile.in stricter.
* tests/substre2.test: Ensure verbose printing of the captured
make's output, and make its grepping slighty stricter.
* tests/cygwin32.test: Enable `errexit' shell flag, and related
changes. Also, do not create useless dummy source/data files.
* tests/scripts.test: Likewise.
* tests/recurs2.test: Likewise. Also, use the `configure.in'
stub created by `./defs'.
* tests/Makefile.am (TESTS): Updated.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Diffstat (limited to 'tests/substtarg.test')
-rwxr-xr-x | tests/substtarg.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/substtarg.test b/tests/substtarg.test index 7d5e098f6..d82895470 100755 --- a/tests/substtarg.test +++ b/tests/substtarg.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2010 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 @@ -21,15 +22,14 @@ set -e -cat > configure.in << 'END' -AC_INIT(fakelib.c) -AM_INIT_AUTOMAKE(fakelib,0.0) +cat >> configure.in << 'END' +AC_CONFIG_SOURCE([fakelib.c]) AC_PROG_CC RANLIB=: -AC_SUBST(RANLIB) +AC_SUBST([RANLIB]) SUBST=hei -AC_SUBST(SUBST) -AC_OUTPUT(Makefile) +AC_SUBST([SUBST]) +AC_OUTPUT END cat > Makefile.am << 'END' |