diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-01-08 19:40:04 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-01-11 22:55:54 +0100 |
commit | 7910300390dcdc2a7a4bf67d905f2fe10a7ae588 (patch) | |
tree | 95be4398fe138c1422ccd187a9a611cf07eb0938 | |
parent | 20664697dcf4a2eabba2b1831b68f9a713d106e8 (diff) | |
download | automake-7910300390dcdc2a7a4bf67d905f2fe10a7ae588.tar.gz |
tests: enable 'errexit' shell flag by default.
* tests/defs: Enable `errexit' shell flag (near the end).
Removed redundant comment about the enabling of shell traces.
* tests/README (Writing test cases): Update, and use nicer
formatting in a couple of places.
* All tests: Adjusted by removing now-redundant calls to
'set -e'.
877 files changed, 1101 insertions, 2670 deletions
@@ -1,3 +1,13 @@ +2011-01-11 Stefano Lattarini <stefano.lattarini@gmail.com> + + tests: enable 'errexit' shell flag by default. + * tests/defs: Enable `errexit' shell flag (near the end). + Removed redundant comment about the enabling of shell traces. + * tests/README (Writing test cases): Update, and use nicer + formatting in a couple of places. + * All tests: Adjusted by removing now-redundant calls to + 'set -e'. + 2011-01-11 Stefano Lattarini <stefano.lattarini@gmail.com> tests: work around a texi+cygnus bug causing a spurious XFAIL diff --git a/tests/README b/tests/README index 1369bd3d2..2d8023649 100644 --- a/tests/README +++ b/tests/README @@ -131,14 +131,18 @@ Do but do not output anything by default. If you need ./configure to create Makefile, append AC_OUTPUT to configure.in. - Use `set -e' to catch failures you might not have thought of. + By default, the testcases are run with the `errexit' shell flag on, + to make it easier to catch failures you might not have thought of. + If this is undesirable in some testcase, you can use `set +e' to + disable the `errexit' flag (but please do so only if you have a + very good reason). End the test script with a `:' or `Exit 0'. Otherwise, when somebody changes the test by adding a failing command after the last command, - the test will spuriously fail because $? is nonzero at the end. - Note that this is relevant also for tests using `set -e', if they - contain commands like "grep ... Makefile.in && Exit 1" (and there - are indeed a lot of such tests). + the test will spuriously fail because $? is nonzero at the end. Note + that this is relevant even if the `errexit' shell flag is on, in case + the test contains commands like "grep ... Makefile.in && Exit 1" (and + there are indeed a lot of such tests). Use $ACLOCAL, $AUTOMAKE, $AUTOCONF, $AUTOUPDATE, $AUTOHEADER, $PERL, $MAKE, $EGREP, and $FGREP, instead of the corresponding @@ -147,12 +151,11 @@ Do Use $sleep when you have to make sure that some file is newer than another. - Use `cat' or `grep' to display (part of) files that may be - interesting for debugging, so that when a user send a verbose - output we don't have to ask him for more details. Display stderr - output on the stderr file descriptor. If some redirected command - is likely to fail, and `set -e' is in effect, display its output - even in the failure case, before exiting. + Use `cat' or `grep' to display (part of) files that may be interesting + for debugging, so that when a user send a verbose output we don't have + to ask him for more details. Display stderr output on the stderr file + descriptor. If some redirected command is likely to fail, display its + output even in the failure case, before exiting. Use `Exit' rather than `exit' to abort a test. diff --git a/tests/acloca10.test b/tests/acloca10.test index c89e80cc8..2501d516d 100755 --- a/tests/acloca10.test +++ b/tests/acloca10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2005, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2005, 2010, 2011 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 @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' MACRO2 MACRO1 diff --git a/tests/acloca11.test b/tests/acloca11.test index 61e9e8a43..25e7a5015 100755 --- a/tests/acloca11.test +++ b/tests/acloca11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' MACRO2 MACRO1 diff --git a/tests/acloca12.test b/tests/acloca12.test index 14d699a87..2fb57e9dd 100755 --- a/tests/acloca12.test +++ b/tests/acloca12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' MACRO1 END diff --git a/tests/acloca13.test b/tests/acloca13.test index 56a54eb95..77b43fe3d 100755 --- a/tests/acloca13.test +++ b/tests/acloca13.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2003, 2005, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' m4_include([somefile.m4]) AC_OUTPUT diff --git a/tests/acloca14.test b/tests/acloca14.test index 1bdf7c780..0371ef58f 100755 --- a/tests/acloca14.test +++ b/tests/acloca14.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008, 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_PROG_LIBTOOL AC_OUTPUT diff --git a/tests/acloca15.test b/tests/acloca15.test index dd612ec71..9cb70d184 100755 --- a/tests/acloca15.test +++ b/tests/acloca15.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # Start macros with AM_ because that causes aclocal to complain if it # cannot find them. diff --git a/tests/acloca16.test b/tests/acloca16.test index 93bde8bf1..5f6dc60bd 100755 --- a/tests/acloca16.test +++ b/tests/acloca16.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([POM]) END diff --git a/tests/acloca17.test b/tests/acloca17.test index 884f24b51..c1355c54b 100755 --- a/tests/acloca17.test +++ b/tests/acloca17.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' SOME_DEFS END diff --git a/tests/acloca18.test b/tests/acloca18.test index 6756fb3b8..2b26d3f23 100755 --- a/tests/acloca18.test +++ b/tests/acloca18.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2005, 2006, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2008, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MACRO1 AM_MACRO2 diff --git a/tests/acloca19.test b/tests/acloca19.test index a198d9abc..10bae6b2c 100755 --- a/tests/acloca19.test +++ b/tests/acloca19.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >configure.in <<'END' AC_INIT([acloca19], [1.0]) m4_include([aconfig.ac]) diff --git a/tests/acloca20.test b/tests/acloca20.test index 6408bef17..9f692f8e2 100755 --- a/tests/acloca20.test +++ b/tests/acloca20.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >foo.m4 <<'END' m4_define([FOO], [echo wrong foo]) END diff --git a/tests/acloca21.test b/tests/acloca21.test index 7b662797e..541892f42 100755 --- a/tests/acloca21.test +++ b/tests/acloca21.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF dnl m4_include(__some_really_bogus_nonexistent_file__.m4) # m4_include(__some_really_bogus_nonexistent_file__.m4) diff --git a/tests/acloca22.test b/tests/acloca22.test index 913e4d9bc..8fbd57f28 100755 --- a/tests/acloca22.test +++ b/tests/acloca22.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF FOO AC_OUTPUT diff --git a/tests/acloca23.test b/tests/acloca23.test index 1741e7062..5a05ed20c 100755 --- a/tests/acloca23.test +++ b/tests/acloca23.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' FOO END diff --git a/tests/aclocal.test b/tests/aclocal.test index 3e78df909..539fb01b7 100755 --- a/tests/aclocal.test +++ b/tests/aclocal.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2004, 2008, 2010 Free Software +# Copyright (C) 1998, 2001, 2002, 2004, 2008, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ # Alexandre Oliva. . ./defs || Exit 1 -set -e - $ACLOCAL --output=fred test -f fred diff --git a/tests/aclocal3.test b/tests/aclocal3.test index a6aee0fc6..bd90782af 100755 --- a/tests/aclocal3.test +++ b/tests/aclocal3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2002, 2004, 2010, 2011 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 @@ -17,8 +18,6 @@ # Test to make sure include of include detects missing macros . ./defs || Exit 1 -set -e - echo GNOME_X_CHECKS >> configure.in mkdir macros diff --git a/tests/aclocal4.test b/tests/aclocal4.test index 9fa96ece8..e18684b7c 100755 --- a/tests/aclocal4.test +++ b/tests/aclocal4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_RANLIB AC_PROG_CC diff --git a/tests/aclocal5.test b/tests/aclocal5.test index b206587aa..0f87e0001 100755 --- a/tests/aclocal5.test +++ b/tests/aclocal5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2005, 2011 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 @@ -22,8 +22,6 @@ required='GNUmake' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_TEST([GREPME]) AC_CONFIG_FILES([sub/Makefile]) diff --git a/tests/aclocal6.test b/tests/aclocal6.test index ea6bac303..f4f1fd378 100755 --- a/tests/aclocal6.test +++ b/tests/aclocal6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -20,8 +20,6 @@ required='GNUmake' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' SOME_DEFS AC_CONFIG_FILES([sub/Makefile]) diff --git a/tests/aclocal7.test b/tests/aclocal7.test index e123a3fd8..20b90b982 100755 --- a/tests/aclocal7.test +++ b/tests/aclocal7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' SOME_DEFS AC_CONFIG_FILES([sub/Makefile]) diff --git a/tests/aclocal8.test b/tests/aclocal8.test index d935f4f2c..2a1a51a82 100755 --- a/tests/aclocal8.test +++ b/tests/aclocal8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' SOME_DEFS END diff --git a/tests/aclocal9.test b/tests/aclocal9.test index a9657fc11..b182a1af6 100755 --- a/tests/aclocal9.test +++ b/tests/aclocal9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' MACRO1 MACRO2 diff --git a/tests/acoutbs.test b/tests/acoutbs.test index 0ce981c32..232267d86 100755 --- a/tests/acoutbs.test +++ b/tests/acoutbs.test @@ -1,5 +1,6 @@ #!/bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/acoutbs2.test b/tests/acoutbs2.test index 5e03c08ba..cd1cd9daa 100755 --- a/tests/acoutbs2.test +++ b/tests/acoutbs2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2000, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/acoutnoq.test b/tests/acoutnoq.test index 344905f74..d49f87887 100755 --- a/tests/acoutnoq.test +++ b/tests/acoutnoq.test @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -23,8 +23,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/acoutpt.test b/tests/acoutpt.test index e18e4e449..12b642744 100755 --- a/tests/acoutpt.test +++ b/tests/acoutpt.test @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/acoutpt2.test b/tests/acoutpt2.test index 2d0743c0f..d97298943 100755 --- a/tests/acoutpt2.test +++ b/tests/acoutpt2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/acoutqnl.test b/tests/acoutqnl.test index 75736f2eb..5cfac28fa 100755 --- a/tests/acoutqnl.test +++ b/tests/acoutqnl.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/acsilent.test b/tests/acsilent.test index abbfc92b0..d4a543668 100755 --- a/tests/acsilent.test +++ b/tests/acsilent.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2008, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2001, 2002, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >configure.in <<EOF AC_INIT AM_INIT_GUILE_MODULE diff --git a/tests/acsubst.test b/tests/acsubst.test index e8eaaceda..a02b34c23 100755 --- a/tests/acsubst.test +++ b/tests/acsubst.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -16,8 +16,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_SUBST([FOOBAR_LDFLAGS],[blablabla]) diff --git a/tests/acsubst2.test b/tests/acsubst2.test index b1c0bce04..cbbbfd803 100755 --- a/tests/acsubst2.test +++ b/tests/acsubst2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2011 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 @@ -16,8 +16,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/all.test b/tests/all.test index 791d081f6..6df139704 100755 --- a/tests/all.test +++ b/tests/all.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2007, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2007, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - targets='all install-exec install-data uninstall' echo "$targets:" | sed -e 's/[ :]/-local&/g' > Makefile.am cat Makefile.am # might be useful for debugging diff --git a/tests/all2.test b/tests/all2.test index 38b6f8caf..f38167e0b 100755 --- a/tests/all2.test +++ b/tests/all2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - $ACLOCAL targets='all install-exec install-data uninstall' diff --git a/tests/alloca.test b/tests/alloca.test index 6cf51bb53..bbf452f39 100755 --- a/tests/alloca.test +++ b/tests/alloca.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_LIBRARIES = libtu.a libtu_a_SOURCES = diff --git a/tests/alloca2.test b/tests/alloca2.test index 4ecd229f4..9976f3f09 100755 --- a/tests/alloca2.test +++ b/tests/alloca2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_LTLIBRARIES = libtu.la libtu_la_SOURCES = diff --git a/tests/alpha.test b/tests/alpha.test index 1ee8ed6a3..a95e42d1d 100755 --- a/tests/alpha.test +++ b/tests/alpha.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2008, 2011 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 @@ -18,8 +19,6 @@ # Jim Meyering. . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([alpha], [1.0a]) AM_INIT_AUTOMAKE diff --git a/tests/alpha2.test b/tests/alpha2.test index e12537705..b8ef266b0 100755 --- a/tests/alpha2.test +++ b/tests/alpha2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([alpha], [1.0b]) AM_INIT_AUTOMAKE([readme-alpha]) diff --git a/tests/amassign.test b/tests/amassign.test index af098d21a..bfc728e25 100755 --- a/tests/amassign.test +++ b/tests/amassign.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CFLAGS=foo AC_SUBST(AM_BAR) diff --git a/tests/ammissing.test b/tests/ammissing.test index 79d9fc2d1..97c425e91 100755 --- a/tests/ammissing.test +++ b/tests/ammissing.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 1997, 2002, 2004, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AM_ZARDOZ >> configure.in $ACLOCAL 2>stderr && { cat stderr >&2; Exit 1; } diff --git a/tests/amopt.test b/tests/amopt.test index 580cf8aab..568299a9c 100755 --- a/tests/amopt.test +++ b/tests/amopt.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<END AM_CONDITIONAL([COND], [true]) END diff --git a/tests/amsubst.test b/tests/amsubst.test index 1fad2caeb..9bba8fa99 100755 --- a/tests/amsubst.test +++ b/tests/amsubst.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([backslash], "\\") _AM_SUBST_NOTMAKE([backslash]) diff --git a/tests/ansi.test b/tests/ansi.test index 7795f48d2..066337adb 100755 --- a/tests/ansi.test +++ b/tests/ansi.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010 Free -# Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010, 2011 +# 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = ansi2knr .PHONY: test1 test2 diff --git a/tests/ansi10.test b/tests/ansi10.test index 88b8618f6..eabe544b5 100755 --- a/tests/ansi10.test +++ b/tests/ansi10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2006, 2011 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 @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CC_STDC diff --git a/tests/ansi2.test b/tests/ansi2.test index 77ca2c616..db6c64f0b 100755 --- a/tests/ansi2.test +++ b/tests/ansi2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = ansi2knr bin_PROGRAMS = joe diff --git a/tests/ansi3.test b/tests/ansi3.test index e1e0c4297..ba05d719e 100755 --- a/tests/ansi3.test +++ b/tests/ansi3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1998, 1999, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -21,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_C_PROTOTYPES diff --git a/tests/ansi3b.test b/tests/ansi3b.test index ad222ffe2..18bf628ac 100755 --- a/tests/ansi3b.test +++ b/tests/ansi3b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1998, 1999, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -22,8 +22,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([hello], [0.24]) AM_INIT_AUTOMAKE([ansi2knr no-dependencies]) diff --git a/tests/ansi4.test b/tests/ansi4.test index 63250a9ec..cb2c16210 100755 --- a/tests/ansi4.test +++ b/tests/ansi4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2008, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_C_PROTOTYPES diff --git a/tests/ansi5.test b/tests/ansi5.test index 1e3b21c59..09ffc5032 100755 --- a/tests/ansi5.test +++ b/tests/ansi5.test @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(one/joe.c) AM_INIT_AUTOMAKE(liver, 0.23) diff --git a/tests/ansi6.test b/tests/ansi6.test index 76f4d22d7..d6f637b6f 100755 --- a/tests/ansi6.test +++ b/tests/ansi6.test @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(ansi6, 1.0) AM_INIT_AUTOMAKE diff --git a/tests/ansi7.test b/tests/ansi7.test index 2524d33f3..02a768bf9 100755 --- a/tests/ansi7.test +++ b/tests/ansi7.test @@ -21,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(ansi6, 1.0) AM_INIT_AUTOMAKE diff --git a/tests/ansi8.test b/tests/ansi8.test index 33f17dca5..04563e2b7 100755 --- a/tests/ansi8.test +++ b/tests/ansi8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = ansi2knr bin_PROGRAMS = hello diff --git a/tests/ansi9.test b/tests/ansi9.test index 4eb182074..9023bf370 100755 --- a/tests/ansi9.test +++ b/tests/ansi9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/ar-lib.test b/tests/ar-lib.test index 652aaf1a1..7168ecd3a 100755 --- a/tests/ar-lib.test +++ b/tests/ar-lib.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=xsi-shell . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/ar-lib" . # Use a dummy lib, since lib isn't readily available on all systems. diff --git a/tests/ar.test b/tests/ar.test index dbdf24657..4a69c34f4 100755 --- a/tests/ar.test +++ b/tests/ar.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([AR], ['echo it works']) AC_SUBST([ARFLAGS], ['>']) diff --git a/tests/ar2.test b/tests/ar2.test index 329f80491..a6149496b 100755 --- a/tests/ar2.test +++ b/tests/ar2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/asm.test b/tests/asm.test index f1bcb7637..ec6dbec9f 100755 --- a/tests/asm.test +++ b/tests/asm.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.stub cat > Makefile.am << 'END' diff --git a/tests/asm2.test b/tests/asm2.test index ab141e7a9..e7c0396b9 100755 --- a/tests/asm2.test +++ b/tests/asm2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2003, 2006, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.stub cat > Makefile.am << 'END' diff --git a/tests/asm3.test b/tests/asm3.test index 5c42c48cd..f2f40f2c0 100755 --- a/tests/asm3.test +++ b/tests/asm3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2003, 2006, 2007, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.stub cat > Makefile.am << 'END' diff --git a/tests/autohdr.test b/tests/autohdr.test index 9293bd121..3e0e23182 100755 --- a/tests/autohdr.test +++ b/tests/autohdr.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_CONFIG_HEADERS([thisfile.h]) EOF diff --git a/tests/autohdr2.test b/tests/autohdr2.test index e2a71cf56..7facb2b67 100755 --- a/tests/autohdr2.test +++ b/tests/autohdr2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_CONFIG_HEADER([thisfile.h]) EOF diff --git a/tests/autohdr3.test b/tests/autohdr3.test index f5592954c..b75506bfd 100755 --- a/tests/autohdr3.test +++ b/tests/autohdr3.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF m4_include([foo.m4]) AC_CONFIG_HEADERS([config.h:config.hin]) diff --git a/tests/autohdr4.test b/tests/autohdr4.test index 24c57fbe7..bd753dab2 100755 --- a/tests/autohdr4.test +++ b/tests/autohdr4.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2003, 2005, 2011 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AC_SUBST([BOT], [bot]) diff --git a/tests/autohdrdry.test b/tests/autohdrdry.test index b501e7674..c77315464 100755 --- a/tests/autohdrdry.test +++ b/tests/autohdrdry.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AC_CONFIG_HEADERS([config.h]) diff --git a/tests/automake.test b/tests/automake.test index f8b4fef76..060720c46 100755 --- a/tests/automake.test +++ b/tests/automake.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2006 Free Software Foundation, Inc. +# Copyright (C) 2004, 2006, 2011 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 @@ -17,8 +17,6 @@ # Test Automake's command-line options. . ./defs || Exit 1 -set -e - $AUTOMAKE --help $AUTOMAKE --version AUTOMAKE_fails --voo diff --git a/tests/auxdir.test b/tests/auxdir.test index f795450ed..04e69f8b0 100755 --- a/tests/auxdir.test +++ b/tests/auxdir.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2004, 2007, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2004, 2007, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # The "./." is here so we don't have to mess with subdirs. cat > configure.in <<END AC_INIT([$me], [1.0]) diff --git a/tests/auxdir2.test b/tests/auxdir2.test index 430abadb4..491275100 100755 --- a/tests/auxdir2.test +++ b/tests/auxdir2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([\$foo) diff --git a/tests/auxdir3.test b/tests/auxdir3.test index 64fbd6a7c..eb1a888ae 100755 --- a/tests/auxdir3.test +++ b/tests/auxdir3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_AUX_DIR([.]) dnl this will appear after AM_INIT_AUTOMAKE END diff --git a/tests/auxdir4.test b/tests/auxdir4.test index 38bf28fc0..09bde4a8d 100755 --- a/tests/auxdir4.test +++ b/tests/auxdir4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >configure.in <<END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([aux]) diff --git a/tests/auxdir5.test b/tests/auxdir5.test index e44b8fb21..6c43295bf 100755 --- a/tests/auxdir5.test +++ b/tests/auxdir5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([nonesuch]) diff --git a/tests/auxdir6.test b/tests/auxdir6.test index 4b3565aac..bf63895eb 100755 --- a/tests/auxdir6.test +++ b/tests/auxdir6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([auxdir]) diff --git a/tests/auxdir7.test b/tests/auxdir7.test index 05fbb4d40..d346ad2f8 100755 --- a/tests/auxdir7.test +++ b/tests/auxdir7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([.]) diff --git a/tests/auxdir8.test b/tests/auxdir8.test index c3e57de3f..1a5e5d9d4 100755 --- a/tests/auxdir8.test +++ b/tests/auxdir8.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2004, 2007, 2011 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 @@ -23,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([subdir/Makefile]) END diff --git a/tests/auxdir9.test b/tests/auxdir9.test index db85ac129..715b7a86b 100755 --- a/tests/auxdir9.test +++ b/tests/auxdir9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - nil=__no_such_program unset NONESUCH || : diff --git a/tests/backcompat.test b/tests/backcompat.test index 3367db24d..9ef4d4ce2 100755 --- a/tests/backcompat.test +++ b/tests/backcompat.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am <<'END' .PHONY: test display diff --git a/tests/backcompat2.test b/tests/backcompat2.test index 09677202f..98336eac9 100755 --- a/tests/backcompat2.test +++ b/tests/backcompat2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - # A trick to make the test run muuuch faster, by avoiding repeated # runs of aclocal (one order of magnitude improvement in speed!). echo 'AC_INIT(x,0) AM_INIT_AUTOMAKE' > configure.in diff --git a/tests/backcompat3.test b/tests/backcompat3.test index f07eaffcd..437377f9a 100755 --- a/tests/backcompat3.test +++ b/tests/backcompat3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - empty='' cat > Makefile.am <<'END' diff --git a/tests/backcompat4.test b/tests/backcompat4.test index f0625eac4..97f0e8c45 100755 --- a/tests/backcompat4.test +++ b/tests/backcompat4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - mkdir sub : > Makefile.am : > zardoz diff --git a/tests/backcompat5.test b/tests/backcompat5.test index 50538cc78..2385ae483 100755 --- a/tests/backcompat5.test +++ b/tests/backcompat5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - # Yuck! cat > configure.in <<'END' dnl. Everything here is *deliberately* underquoted! diff --git a/tests/backcompat6.test b/tests/backcompat6.test index 734709ec6..389bc4ba4 100755 --- a/tests/backcompat6.test +++ b/tests/backcompat6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - # Anyone doing something like this in a real-life package probably # deserves to be killed. cat > configure.in <<'END' diff --git a/tests/backsl.test b/tests/backsl.test index 3947cde6c..4e3943f04 100755 --- a/tests/backsl.test +++ b/tests/backsl.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/backsl2.test b/tests/backsl2.test index 35e9b9be1..f0116e320 100755 --- a/tests/backsl2.test +++ b/tests/backsl2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUBDIRS = \ . diff --git a/tests/backsl3.test b/tests/backsl3.test index 76fdd9ab7..876c045ef 100755 --- a/tests/backsl3.test +++ b/tests/backsl3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' foo = \ END diff --git a/tests/backsl4.test b/tests/backsl4.test index 16eab5f1e..7cfe73782 100755 --- a/tests/backsl4.test +++ b/tests/backsl4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in # Note: trailing whitespace used during the test should not appear as diff --git a/tests/badline.test b/tests/badline.test index 7c636976a..18ad92944 100755 --- a/tests/badline.test +++ b/tests/badline.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/badopt.test b/tests/badopt.test index 2da53e99d..6f6d79210 100755 --- a/tests/badopt.test +++ b/tests/badopt.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'AUTOMAKE_OPTIONS = zardoz' > Makefile.am $ACLOCAL diff --git a/tests/badprog.test b/tests/badprog.test index 7a31b3ff7..87b7562df 100755 --- a/tests/badprog.test +++ b/tests/badprog.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/block.test b/tests/block.test index 862389eb0..0eda19044 100755 --- a/tests/block.test +++ b/tests/block.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' #START #a diff --git a/tests/bsource.test b/tests/bsource.test index 80066d8f6..38f8a43c7 100755 --- a/tests/bsource.test +++ b/tests/bsource.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_SCRIPTS = hostname include_HEADERS = gettext-po.h diff --git a/tests/candist.test b/tests/candist.test index 0a859dd90..f75f4065a 100755 --- a/tests/candist.test +++ b/tests/candist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in cat > Makefile.am << 'END' diff --git a/tests/canon-name.test b/tests/canon-name.test index b8e53310f..2b9cd0aea 100755 --- a/tests/canon-name.test +++ b/tests/canon-name.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2007, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/canon.test b/tests/canon.test index fc524fdbd..51e03b22c 100755 --- a/tests/canon.test +++ b/tests/canon.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/canon2.test b/tests/canon2.test index ab2861750..3085a7c09 100755 --- a/tests/canon2.test +++ b/tests/canon2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = zar-doz.texi zar_doz_TEXINFOS = frob.texi diff --git a/tests/canon3.test b/tests/canon3.test index ce5876a30..c93f8ace3 100755 --- a/tests/canon3.test +++ b/tests/canon3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/canon4.test b/tests/canon4.test index 454b4ef0f..733ea7027 100755 --- a/tests/canon4.test +++ b/tests/canon4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/canon5.test b/tests/canon5.test index 3bd99abcd..43c098b29 100755 --- a/tests/canon5.test +++ b/tests/canon5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/canon6.test b/tests/canon6.test index d103996c7..a24e2eb6f 100755 --- a/tests/canon6.test +++ b/tests/canon6.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/canon7.test b/tests/canon7.test index b85a83505..4e700df1e 100755 --- a/tests/canon7.test +++ b/tests/canon7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required='libtool libtoolize' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB dnl: for static libraries diff --git a/tests/canon8.test b/tests/canon8.test index 2ae47dd4e..5351345e4 100755 --- a/tests/canon8.test +++ b/tests/canon8.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/ccnoco.test b/tests/ccnoco.test index d7c0360de..fb22ba74f 100755 --- a/tests/ccnoco.test +++ b/tests/ccnoco.test @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.1 << 'END' AC_INIT(a.c) AM_INIT_AUTOMAKE(nonesuch, 0.23) diff --git a/tests/ccnoco2.test b/tests/ccnoco2.test index 062fe6ba5..a724448f2 100755 --- a/tests/ccnoco2.test +++ b/tests/ccnoco2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AC_OUTPUT diff --git a/tests/ccnoco3.test b/tests/ccnoco3.test index 2e9cd37d2..92ccf79b4 100755 --- a/tests/ccnoco3.test +++ b/tests/ccnoco3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2008, 2009, 2011 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 @@ -19,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/check.test b/tests/check.test index 0c258c5eb..54432eca9 100755 --- a/tests/check.test +++ b/tests/check.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' TESTS = frob.test END diff --git a/tests/check10.test b/tests/check10.test index ab9b5298c..7025b9863 100755 --- a/tests/check10.test +++ b/tests/check10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/check11.test b/tests/check11.test index 1fe6a4d3a..912b619f1 100755 --- a/tests/check11.test +++ b/tests/check11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/check12.test b/tests/check12.test index 34c84093c..4be4b807b 100755 --- a/tests/check12.test +++ b/tests/check12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=runtest . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/check2.test b/tests/check2.test index 1db0454f4..9b8bfb1b5 100755 --- a/tests/check2.test +++ b/tests/check2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([dir/Makefile]) AC_OUTPUT diff --git a/tests/check3.test b/tests/check3.test index 65705c404..be40e3fae 100755 --- a/tests/check3.test +++ b/tests/check3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2007, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([dir/Makefile]) AC_OUTPUT diff --git a/tests/check4.test b/tests/check4.test index 70dc55a48..99adb23b7 100755 --- a/tests/check4.test +++ b/tests/check4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2005, 2007, 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([dir/Makefile]) AC_OUTPUT diff --git a/tests/check5.test b/tests/check5.test index 7113e1b3e..2db74d18d 100755 --- a/tests/check5.test +++ b/tests/check5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/check6.test b/tests/check6.test index e32499cef..b3ba9d872 100755 --- a/tests/check6.test +++ b/tests/check6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/check7.test b/tests/check7.test index 1653a8dc5..5c5f4f34f 100755 --- a/tests/check7.test +++ b/tests/check7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/check8.test b/tests/check8.test index dc8d3dda7..4ff71a77a 100755 --- a/tests/check8.test +++ b/tests/check8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/check9.test b/tests/check9.test index c80d780b4..07ea4e42f 100755 --- a/tests/check9.test +++ b/tests/check9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_SUBST([script_tests], ['subst-pass-script.test subst-xfail-script.test']) diff --git a/tests/checkall.test b/tests/checkall.test index 7dff8fc18..1981bc792 100755 --- a/tests/checkall.test +++ b/tests/checkall.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_SCRIPTS = derived check-local: diff --git a/tests/clean.test b/tests/clean.test index 23ab2acfc..b9ffbe0e9 100755 --- a/tests/clean.test +++ b/tests/clean.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am $ACLOCAL diff --git a/tests/clean2.test b/tests/clean2.test index 48165ce74..1f9baff80 100755 --- a/tests/clean2.test +++ b/tests/clean2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE AC_CONFIG_FILES([sub/Makefile]) diff --git a/tests/colneq.test b/tests/colneq.test index ab789b3cf..b60d5c040 100755 --- a/tests/colneq.test +++ b/tests/colneq.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' ICONS := $(wildcard *.xbm) END diff --git a/tests/colneq2.test b/tests/colneq2.test index 37be36017..8f408eb2b 100755 --- a/tests/colneq2.test +++ b/tests/colneq2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/colneq3.test b/tests/colneq3.test index 0ff8bcebb..96c02d7c6 100755 --- a/tests/colneq3.test +++ b/tests/colneq3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/colon.test b/tests/colon.test index f1eec9ac6..ff44e0b49 100755 --- a/tests/colon.test +++ b/tests/colon.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_CONFIG_FILES([foo.h:foo.hin]) AC_OUTPUT diff --git a/tests/colon2.test b/tests/colon2.test index 503f6db31..10b270d9c 100755 --- a/tests/colon2.test +++ b/tests/colon2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/colon3.test b/tests/colon3.test index e261b724b..8a830633a 100755 --- a/tests/colon3.test +++ b/tests/colon3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/colon4.test b/tests/colon4.test index 9af6b4e8b..2c2638392 100755 --- a/tests/colon4.test +++ b/tests/colon4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2000, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<END AC_CONFIG_FILES([zardoz:one:two:three]) AC_OUTPUT diff --git a/tests/colon5.test b/tests/colon5.test index 2db24844b..ca5414c15 100755 --- a/tests/colon5.test +++ b/tests/colon5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/colon6.test b/tests/colon6.test index 71ee4bd02..bf5cf2d37 100755 --- a/tests/colon6.test +++ b/tests/colon6.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/colon7.test b/tests/colon7.test index 40bd0a68a..2ab5a4877 100755 --- a/tests/colon7.test +++ b/tests/colon7.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([colon7], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/color.test b/tests/color.test index c1032fdc7..570b21d66 100755 --- a/tests/color.test +++ b/tests/color.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2007, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - TERM=ansi export TERM diff --git a/tests/color2.test b/tests/color2.test index 306aa040c..c3315deb4 100755 --- a/tests/color2.test +++ b/tests/color2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2007, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - TERM=ansi export TERM diff --git a/tests/commen10.test b/tests/commen10.test index d7148f800..79545e957 100755 --- a/tests/commen10.test +++ b/tests/commen10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUBDIRS = foo \ # bar diff --git a/tests/commen11.test b/tests/commen11.test index 963f2f885..b092d3978 100755 --- a/tests/commen11.test +++ b/tests/commen11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2009 Free Software Foundation, Inc. +# Copyright (C) 2005, 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' # initial comment variable = value-before-comment \ diff --git a/tests/comment.test b/tests/comment.test index 761dbf59d..6092e74ca 100755 --- a/tests/comment.test +++ b/tests/comment.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = #no such option END diff --git a/tests/comment2.test b/tests/comment2.test index 97e6a2610..f8bd62c98 100755 --- a/tests/comment2.test +++ b/tests/comment2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/comment3.test b/tests/comment3.test index 14980c8fa..8903a97e8 100755 --- a/tests/comment3.test +++ b/tests/comment3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' install-data-local: # Tru64 Unix must die diff --git a/tests/comment4.test b/tests/comment4.test index 6f3f8cc40..7c1f454c4 100755 --- a/tests/comment4.test +++ b/tests/comment4.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/comment5.test b/tests/comment5.test index 6c66b538d..8e1d1fea4 100755 --- a/tests/comment5.test +++ b/tests/comment5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/comment6.test b/tests/comment6.test index efa8482a8..089576819 100755 --- a/tests/comment6.test +++ b/tests/comment6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/comment7.test b/tests/comment7.test index f28b71162..7d869de54 100755 --- a/tests/comment7.test +++ b/tests/comment7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AM_CONDITIONAL([COND], [true]) EOF diff --git a/tests/comment8.test b/tests/comment8.test index 58ef56a03..a9d6eaa0d 100755 --- a/tests/comment8.test +++ b/tests/comment8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [true]) diff --git a/tests/comment9.test b/tests/comment9.test index b106b3a4b..e95d99be0 100755 --- a/tests/comment9.test +++ b/tests/comment9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' TESTS = \ 1.test \ diff --git a/tests/comments-in-var-defn.test b/tests/comments-in-var-defn.test index b00ee6b6f..3f5192e8b 100755 --- a/tests/comments-in-var-defn.test +++ b/tests/comments-in-var-defn.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_OUTPUT END diff --git a/tests/compile.test b/tests/compile.test index 2bec65785..8427bad09 100755 --- a/tests/compile.test +++ b/tests/compile.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2007, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/compile" . # -o 'a c' should not be stripped because 'a c' is not an object diff --git a/tests/compile2.test b/tests/compile2.test index 2f812c5fd..04fee9084 100755 --- a/tests/compile2.test +++ b/tests/compile2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/compile" . cat >mycc <<'END' diff --git a/tests/compile3.test b/tests/compile3.test index 53db92661..f949d1c2d 100755 --- a/tests/compile3.test +++ b/tests/compile3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=xsi-shell . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/compile" . # Use a dummy cl, since cl isn't readily available on all systems diff --git a/tests/compile4.test b/tests/compile4.test index 5a0bdf3c3..cf8d6cb7d 100755 --- a/tests/compile4.test +++ b/tests/compile4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='cl' . ./defs || Exit 1 -set -e - mkdir sub cat >sub/foo.c <<'EOF' diff --git a/tests/compile5.test b/tests/compile5.test index 5fc1b3031..6f4f4bdd2 100755 --- a/tests/compile5.test +++ b/tests/compile5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/compile" . # Use a dummy cl, since cl isn't readily available on all systems diff --git a/tests/compile6.test b/tests/compile6.test index 1f012cf94..02feb4b6d 100755 --- a/tests/compile6.test +++ b/tests/compile6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=xsi-shell . ./defs || Exit 1 -set -e - cp "$top_testsrcdir/lib/compile" . # Use a dummy cl, since cl isn't readily available on all systems diff --git a/tests/compile_f90_c_cxx.test b/tests/compile_f90_c_cxx.test index bb4639076..ec593ca4b 100755 --- a/tests/compile_f90_c_cxx.test +++ b/tests/compile_f90_c_cxx.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/compile_f_c_cxx.test b/tests/compile_f_c_cxx.test index 2ab53491b..ef0692dc8 100755 --- a/tests/compile_f_c_cxx.test +++ b/tests/compile_f_c_cxx.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/cond-basic.test b/tests/cond-basic.test index 0609ec113..2866aa601 100755 --- a/tests/cond-basic.test +++ b/tests/cond-basic.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([TEST], [true]) AC_OUTPUT diff --git a/tests/cond.test b/tests/cond.test index 586d80a3c..f4567f114 100755 --- a/tests/cond.test +++ b/tests/cond.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2001, 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 1997, 2001, 2002, 2006, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL(TEST, true) AC_OUTPUT diff --git a/tests/cond10.test b/tests/cond10.test index 974dfdc2f..49a3d6b7c 100755 --- a/tests/cond10.test +++ b/tests/cond10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL(USE_A,[test x = y]) diff --git a/tests/cond11.test b/tests/cond11.test index 15c6c2adb..1df840aab 100755 --- a/tests/cond11.test +++ b/tests/cond11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([USE_A], [test -z "$two"]) diff --git a/tests/cond13.test b/tests/cond13.test index e5f6be9c5..193b02d40 100755 --- a/tests/cond13.test +++ b/tests/cond13.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/cond14.test b/tests/cond14.test index 09701f7b5..f5a5e2474 100755 --- a/tests/cond14.test +++ b/tests/cond14.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([COND1], [true]) diff --git a/tests/cond15.test b/tests/cond15.test index 0789074c3..fbd5e04e2 100755 --- a/tests/cond15.test +++ b/tests/cond15.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([COND1], [true]) diff --git a/tests/cond16.test b/tests/cond16.test index 24f18df50..9a60e029b 100755 --- a/tests/cond16.test +++ b/tests/cond16.test @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(hello.c) AM_INIT_AUTOMAKE(hello,0.23) diff --git a/tests/cond17.test b/tests/cond17.test index 962dec33b..90a38e6ce 100755 --- a/tests/cond17.test +++ b/tests/cond17.test @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(Makefile.am) AM_INIT_AUTOMAKE(hello,0.23) diff --git a/tests/cond18.test b/tests/cond18.test index c4ebed2db..545038933 100755 --- a/tests/cond18.test +++ b/tests/cond18.test @@ -20,8 +20,6 @@ required='GNUmake gcc' . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(Makefile.am) AM_INIT_AUTOMAKE(hello,0.23) diff --git a/tests/cond19.test b/tests/cond19.test index 93545e031..ef01c91a8 100755 --- a/tests/cond19.test +++ b/tests/cond19.test @@ -20,8 +20,6 @@ required='GNUmake gcc' . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(Makefile.am) AM_INIT_AUTOMAKE(hello,0.23) diff --git a/tests/cond2.test b/tests/cond2.test index a548ef61d..b47e3245b 100755 --- a/tests/cond2.test +++ b/tests/cond2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1997, 2001, 2002, 2003, 2004, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/cond20.test b/tests/cond20.test index 8e16e9f0f..f0e1dd8ea 100755 --- a/tests/cond20.test +++ b/tests/cond20.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT(Makefile.am) AM_INIT_AUTOMAKE(hello,0.23) diff --git a/tests/cond21.test b/tests/cond21.test index 37b6b6f39..5d1db769c 100755 --- a/tests/cond21.test +++ b/tests/cond21.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL(COND1, true) diff --git a/tests/cond22.test b/tests/cond22.test index 4ef19677b..335407724 100755 --- a/tests/cond22.test +++ b/tests/cond22.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL(ONE, true) diff --git a/tests/cond23.test b/tests/cond23.test index e2b133c1a..7cb8292e2 100755 --- a/tests/cond23.test +++ b/tests/cond23.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_CONDITIONAL([COND], [true]) AC_OUTPUT diff --git a/tests/cond24.test b/tests/cond24.test index e5482115b..7bfa89f58 100755 --- a/tests/cond24.test +++ b/tests/cond24.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_SUBST([foo], [bar]) AM_CONDITIONAL([COND], [true]) diff --git a/tests/cond25.test b/tests/cond25.test index 02614f92e..9d1686d04 100755 --- a/tests/cond25.test +++ b/tests/cond25.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'EOF' AM_CONDITIONAL([USE_FOO], [true]) AC_PROG_CC diff --git a/tests/cond26.test b/tests/cond26.test index 1d93cc02b..7252dbd0b 100755 --- a/tests/cond26.test +++ b/tests/cond26.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'EOF' AM_CONDITIONAL([USE_FOO], [true]) EOF diff --git a/tests/cond27.test b/tests/cond27.test index 250b1efe7..141723c47 100755 --- a/tests/cond27.test +++ b/tests/cond27.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'EOF' AM_CONDITIONAL([USE_FOO], [true]) EOF diff --git a/tests/cond28.test b/tests/cond28.test index 006ef573c..e5f254e1c 100755 --- a/tests/cond28.test +++ b/tests/cond28.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'EOF' AM_CONDITIONAL([USE_FOO], [true]) EOF diff --git a/tests/cond29.test b/tests/cond29.test index 8310eabd7..f2488504c 100755 --- a/tests/cond29.test +++ b/tests/cond29.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -26,8 +26,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >>configure.in cat >Makefile.am <<EOF diff --git a/tests/cond3.test b/tests/cond3.test index e2dbdafa3..2a75d432c 100755 --- a/tests/cond3.test +++ b/tests/cond3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/cond30.test b/tests/cond30.test index d1935f702..d15629761 100755 --- a/tests/cond30.test +++ b/tests/cond30.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AM_CONDITIONAL(C1, [test -z "$two"]) diff --git a/tests/cond31.test b/tests/cond31.test index 224d32ca2..7deb999a7 100755 --- a/tests/cond31.test +++ b/tests/cond31.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AM_CONDITIONAL(C1, [test -z "$two"]) diff --git a/tests/cond32.test b/tests/cond32.test index 6ec5a20d7..0e5e5d2a6 100755 --- a/tests/cond32.test +++ b/tests/cond32.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AM_CONDITIONAL(C1, [test -z "$two"]) diff --git a/tests/cond33.test b/tests/cond33.test index f327cb78a..6f822aa61 100755 --- a/tests/cond33.test +++ b/tests/cond33.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 2004, 2007, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([INC], [test -z "$two"]) AC_OUTPUT diff --git a/tests/cond34.test b/tests/cond34.test index ecb16163c..9b951f54d 100755 --- a/tests/cond34.test +++ b/tests/cond34.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([TWO], test -n "$two") AC_PROG_CC diff --git a/tests/cond35.test b/tests/cond35.test index 0f3b8cf8c..120a3ba3c 100755 --- a/tests/cond35.test +++ b/tests/cond35.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -20,8 +20,6 @@ required='flex bison gcc' . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([CASE_A], test -z "$case_B") AC_PROG_CC diff --git a/tests/cond36.test b/tests/cond36.test index f6c97dbd6..6b9a74222 100755 --- a/tests/cond36.test +++ b/tests/cond36.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ required='flex bison gcc' . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([CASE_A], test -z "$case_B") AC_PROG_CC diff --git a/tests/cond37.test b/tests/cond37.test index a4ae07875..59923e8f8 100755 --- a/tests/cond37.test +++ b/tests/cond37.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([CASE_A], test -n "$case_A") AC_OUTPUT diff --git a/tests/cond38.test b/tests/cond38.test index b1c303624..222007d5a 100755 --- a/tests/cond38.test +++ b/tests/cond38.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_CONDITIONAL([CASE_A], :) AM_CONDITIONAL([CASE_B], :) diff --git a/tests/cond39.test b/tests/cond39.test index c75c7b515..3deb1cfd4 100755 --- a/tests/cond39.test +++ b/tests/cond39.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -21,8 +21,6 @@ # Build either as CONFIG_FILE or as PROGRAM. . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'END' diff --git a/tests/cond4.test b/tests/cond4.test index 6efc9ce71..76187dd1a 100755 --- a/tests/cond4.test +++ b/tests/cond4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ required='GNUmake gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([ONE], [test "x$CONDITION1" = "xtrue"]) diff --git a/tests/cond40.test b/tests/cond40.test index 8552cefbf..267d1eb31 100755 --- a/tests/cond40.test +++ b/tests/cond40.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -21,8 +21,6 @@ # Test AM_COND_IF. . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_DEFUN([FOO], [AC_CONFIG_FILES([$1])]) diff --git a/tests/cond41.test b/tests/cond41.test index dd9ffda13..b68573fca 100755 --- a/tests/cond41.test +++ b/tests/cond41.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -21,8 +21,6 @@ # AM_COND_IF with an undefined condition should fail. . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_COND_IF([COND], [AC_CONFIG_FILES([file1])]) diff --git a/tests/cond42.test b/tests/cond42.test index 428c02b4b..265ab2905 100755 --- a/tests/cond42.test +++ b/tests/cond42.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -23,8 +23,6 @@ # but better to be safe. . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND], [:]) # next line needed so that cond-if.m4 is pulled in. diff --git a/tests/cond43.test b/tests/cond43.test index 1fa413d8a..befa165f9 100755 --- a/tests/cond43.test +++ b/tests/cond43.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -21,8 +21,6 @@ # Ensure an error with underquoted usage of AM_COND_IF in configure.ac. . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND1], [:]) AM_CONDITIONAL([COND2], [:]) diff --git a/tests/cond44.test b/tests/cond44.test index 4b5adc240..3d68a416e 100755 --- a/tests/cond44.test +++ b/tests/cond44.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_CONDITIONAL([COND], [true]) AM_SUBST_NOTMAKE([libdir]) diff --git a/tests/cond45.test b/tests/cond45.test index c70fecb47..ebaa2afd6 100755 --- a/tests/cond45.test +++ b/tests/cond45.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_SUBST([foo], [bar]) AM_SUBST_NOTMAKE([foo]) diff --git a/tests/cond46.test b/tests/cond46.test index 0b8696c7e..ffeebd23e 100755 --- a/tests/cond46.test +++ b/tests/cond46.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([USE_A],[test x = y]) AM_CONDITIONAL([USE_B],[test x = z]) diff --git a/tests/cond5.test b/tests/cond5.test index 50101a6fe..0af13f3ff 100755 --- a/tests/cond5.test +++ b/tests/cond5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([ONE], [true]) diff --git a/tests/cond6.test b/tests/cond6.test index ec4003227..4a576b46f 100755 --- a/tests/cond6.test +++ b/tests/cond6.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'AM_CONDITIONAL(FOO, true)' >> configure.in cat > Makefile.am << 'END' diff --git a/tests/cond7.test b/tests/cond7.test index b11dddf18..d680577fd 100755 --- a/tests/cond7.test +++ b/tests/cond7.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' compat=yes AM_CONDITIONAL([Compatible], [test x$compat = xyes]) diff --git a/tests/cond8.test b/tests/cond8.test index 0a45ad3bb..3a81a287a 100755 --- a/tests/cond8.test +++ b/tests/cond8.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL(X, false) diff --git a/tests/cond9.test b/tests/cond9.test index e79809904..22792aeb5 100755 --- a/tests/cond9.test +++ b/tests/cond9.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL(WRONG, [test x = y]) AC_OUTPUT diff --git a/tests/condd.test b/tests/condd.test index b70d69132..ef5f7c71f 100755 --- a/tests/condd.test +++ b/tests/condd.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC dnl Define a macro with the same name as the conditional to exhibit diff --git a/tests/condhook.test b/tests/condhook.test index bf9225be3..8763ee6c3 100755 --- a/tests/condhook.test +++ b/tests/condhook.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2007, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([TEST], [false]) AC_OUTPUT diff --git a/tests/condhook2.test b/tests/condhook2.test index 45e2d43fb..109dbb08e 100755 --- a/tests/condhook2.test +++ b/tests/condhook2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([TEST], [true]) AC_OUTPUT diff --git a/tests/condinc.test b/tests/condinc.test index cf9e35fce..09315cd31 100755 --- a/tests/condinc.test +++ b/tests/condinc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([TOBE], [false]) END diff --git a/tests/condinc2.test b/tests/condinc2.test index 7210a5bf1..a27fe83fe 100755 --- a/tests/condinc2.test +++ b/tests/condinc2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2009, 2010 Free Software +# Copyright (C) 1999, 2001, 2002, 2003, 2009, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([TOBE], [false]) END diff --git a/tests/condlib.test b/tests/condlib.test index b6c998d71..390de753f 100755 --- a/tests/condlib.test +++ b/tests/condlib.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2008, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_RANLIB AM_MAINTAINER_MODE diff --git a/tests/condman.test b/tests/condman.test index ee2d41b03..85840144c 100755 --- a/tests/condman.test +++ b/tests/condman.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([FRED], [true]) END diff --git a/tests/condman2.test b/tests/condman2.test index c0e721676..ad863708b 100755 --- a/tests/condman2.test +++ b/tests/condman2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' man_MANS = foo.1 foo.2 man5_MANS = foo.5 diff --git a/tests/condman3.test b/tests/condman3.test index ff93daf9b..2482d8d55 100755 --- a/tests/condman3.test +++ b/tests/condman3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([COND], [test x"$FOO" = x"true"]) AC_OUTPUT diff --git a/tests/confdeps.test b/tests/confdeps.test index 679e801ba..606027d49 100755 --- a/tests/confdeps.test +++ b/tests/confdeps.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo "FOO = foo" > Makefile.am $ACLOCAL diff --git a/tests/conff.test b/tests/conff.test index dc6677cb6..1565271e2 100755 --- a/tests/conff.test +++ b/tests/conff.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([bar/Makefile:bar/Makefile.in:Makefile.bot]) AC_OUTPUT diff --git a/tests/conff2.test b/tests/conff2.test index a0101e126..590169df7 100755 --- a/tests/conff2.test +++ b/tests/conff2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # We avoid using configure.in stub initialized by ./defs, since we need # to keep track of line numbers (to grep for error messages). cat > configure.in << END diff --git a/tests/confh.test b/tests/confh.test index 93badefd6..f900fd7d8 100755 --- a/tests/confh.test +++ b/tests/confh.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2006, 2010 Free Software +# Copyright (C) 1999, 2000, 2001, 2002, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONFIG_HEADER([include/config.h]) AC_OUTPUT diff --git a/tests/confh4.test b/tests/confh4.test index 8e36cfabf..20b2a9995 100755 --- a/tests/confh4.test +++ b/tests/confh4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2010, 2011 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 @@ -25,8 +25,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([include/Makefile]) AM_CONFIG_HEADER([include/config.h]) diff --git a/tests/confh5.test b/tests/confh5.test index 9af83dcbf..f823af1f8 100755 --- a/tests/confh5.test +++ b/tests/confh5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([FOO], [NameToBeGrepped]) AC_CONFIG_FILES([include/config.h.in]) diff --git a/tests/confh6.test b/tests/confh6.test index 532a2fdce..c00190fb6 100755 --- a/tests/confh6.test +++ b/tests/confh6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1998, 2000, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -22,8 +22,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONFIG_HEADER([subdir/config.h]) AC_OUTPUT diff --git a/tests/confh7.test b/tests/confh7.test index 4e4f7da2d..2ccb10c70 100755 --- a/tests/confh7.test +++ b/tests/confh7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONFIG_HEADER([config.h two.h]) END diff --git a/tests/confh8.test b/tests/confh8.test index 146d2f059..66b8a5493 100755 --- a/tests/confh8.test +++ b/tests/confh8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONFIG_HEADER([one.h two.h]) AC_OUTPUT diff --git a/tests/configure.test b/tests/configure.test index 0773a00df..0e6290659 100755 --- a/tests/configure.test +++ b/tests/configure.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >configure.ac <<EOF AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/confincl.test b/tests/confincl.test index c4f0cdec3..235d7d6dc 100755 --- a/tests/confincl.test +++ b/tests/confincl.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/conflnk.test b/tests/conflnk.test index 8dfafbc6c..4052e241c 100755 --- a/tests/conflnk.test +++ b/tests/conflnk.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'SUBDIRS = sdir' > Makefile.am : > src mkdir sdir diff --git a/tests/conflnk2.test b/tests/conflnk2.test index 8c68c38cc..1a3aa32ba 100755 --- a/tests/conflnk2.test +++ b/tests/conflnk2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUBDIRS = sdir .PHONY: test diff --git a/tests/conflnk3.test b/tests/conflnk3.test index 20f4786b1..78086077b 100755 --- a/tests/conflnk3.test +++ b/tests/conflnk3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUBDIRS = sdir .PHONY: test diff --git a/tests/conflnk4.test b/tests/conflnk4.test index fd96054da..7597087d3 100755 --- a/tests/conflnk4.test +++ b/tests/conflnk4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -23,8 +23,6 @@ . ./defs || Exit 1 -set -e - mkdir nonmk-subdir sdir sdir/mk-subdir : > src : > sdir/Makefile.am diff --git a/tests/confsub.test b/tests/confsub.test index a0d4fe394..43f0819df 100755 --- a/tests/confsub.test +++ b/tests/confsub.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010 Free -# Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010, 2011 +# 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE(nonesuch, nonesuch) diff --git a/tests/confvar.test b/tests/confvar.test index 13cc7dd5f..cc0bd7e2e 100755 --- a/tests/confvar.test +++ b/tests/confvar.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([QBERT]) END diff --git a/tests/confvar2.test b/tests/confvar2.test index 1cfd2d352..ca11568c3 100755 --- a/tests/confvar2.test +++ b/tests/confvar2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([OTHER_SCRIPTS]) END diff --git a/tests/copy.test b/tests/copy.test index e4199a1a8..714f7222a 100755 --- a/tests/copy.test +++ b/tests/copy.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am rm -f install-sh diff --git a/tests/cscope.test b/tests/cscope.test index e79520fa1..859653b2d 100755 --- a/tests/cscope.test +++ b/tests/cscope.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ required= . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_PROG_CC diff --git a/tests/cscope2.test b/tests/cscope2.test index 106b801ce..a7fa99317 100755 --- a/tests/cscope2.test +++ b/tests/cscope2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ required= . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/cscope3.test b/tests/cscope3.test index 03e1d47f9..e40c061d6 100755 --- a/tests/cscope3.test +++ b/tests/cscope3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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,8 +21,6 @@ required=cscope . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/cxx.test b/tests/cxx.test index aa2f22575..5edad1673 100755 --- a/tests/cxx.test +++ b/tests/cxx.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX END diff --git a/tests/cxx2.test b/tests/cxx2.test index 0b9e8809b..7606356e2 100755 --- a/tests/cxx2.test +++ b/tests/cxx2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >>configure.in cat >Makefile.am <<'END' diff --git a/tests/cxxansi.test b/tests/cxxansi.test index 8bbe9b278..150cc9ebf 100755 --- a/tests/cxxansi.test +++ b/tests/cxxansi.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AM_C_PROTOTYPES diff --git a/tests/cxxcpp.test b/tests/cxxcpp.test index 09bb4eb8c..b5e2bc3d7 100755 --- a/tests/cxxcpp.test +++ b/tests/cxxcpp.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXXCPP END diff --git a/tests/cxxlibobj.test b/tests/cxxlibobj.test index 5f5ee308d..30e7501fc 100755 --- a/tests/cxxlibobj.test +++ b/tests/cxxlibobj.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1997, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AC_PROG_CC diff --git a/tests/cxxlink.test b/tests/cxxlink.test index 66b3d2953..617234a2a 100755 --- a/tests/cxxlink.test +++ b/tests/cxxlink.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/cxxnoc.test b/tests/cxxnoc.test index 9d5fa7b63..04a34a1ae 100755 --- a/tests/cxxnoc.test +++ b/tests/cxxnoc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2005 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2005, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX END diff --git a/tests/cxxo.test b/tests/cxxo.test index a69fb2ab1..2867218b2 100755 --- a/tests/cxxo.test +++ b/tests/cxxo.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -17,8 +18,6 @@ # Make sure C++ files are rewritten to ".o" and not just "o". . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX END diff --git a/tests/cygnus-check-without-all.test b/tests/cygnus-check-without-all.test index 964dc5970..af15421bf 100755 --- a/tests/cygnus-check-without-all.test +++ b/tests/cygnus-check-without-all.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AM_MAINTAINER_MODE AC_OUTPUT diff --git a/tests/cygnus-dependency-tracking.test b/tests/cygnus-dependency-tracking.test index f2f4aea22..5f0051e4e 100755 --- a/tests/cygnus-dependency-tracking.test +++ b/tests/cygnus-dependency-tracking.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AM_MAINTAINER_MODE AC_PROG_CC diff --git a/tests/cygnus-imply-foreign.test b/tests/cygnus-imply-foreign.test index 0e9a299c3..9a20f21e0 100755 --- a/tests/cygnus-imply-foreign.test +++ b/tests/cygnus-imply-foreign.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' # This is *required* in cygnus mode AM_MAINTAINER_MODE diff --git a/tests/cygnus-no-dist.test b/tests/cygnus-no-dist.test index dac7fd078..acb5ec6bd 100755 --- a/tests/cygnus-no-dist.test +++ b/tests/cygnus-no-dist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo AM_MAINTAINER_MODE >> configure.in mv -f configure.in configure.stub diff --git a/tests/cygnus-no-installinfo.test b/tests/cygnus-no-installinfo.test index 380250cbb..25a8e7cae 100755 --- a/tests/cygnus-no-installinfo.test +++ b/tests/cygnus-no-installinfo.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=makeinfo . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AM_MAINTAINER_MODE AC_OUTPUT diff --git a/tests/cygnus-requires-maintainer-mode.test b/tests/cygnus-requires-maintainer-mode.test index f6db92d6c..86e33a1d0 100755 --- a/tests/cygnus-requires-maintainer-mode.test +++ b/tests/cygnus-requires-maintainer-mode.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am $ACLOCAL diff --git a/tests/cygwin32.test b/tests/cygwin32.test index ec3f43db3..ed9fcd15c 100755 --- a/tests/cygwin32.test +++ b/tests/cygwin32.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997, 1999, 2001, 2002, 2008, 2010 Free Software +# Copyright (C) 1997, 1999, 2001, 2002, 2008, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/dash.test b/tests/dash.test index 335b891c1..ef8a176de 100755 --- a/tests/dash.test +++ b/tests/dash.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' include Make-lang END diff --git a/tests/defs b/tests/defs index f04a7560a..b5373a9ca 100644 --- a/tests/defs +++ b/tests/defs @@ -460,7 +460,7 @@ done ## Ready to go... ## ## ---------------- ## -# Turn on shell traces. set -x +set -e pwd diff --git a/tests/defun.test b/tests/defun.test index 604191884..44b3d805c 100755 --- a/tests/defun.test +++ b/tests/defun.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > acinclude.m4 << 'END' AC_DEFUN([AM_FUNC_THREE]) AC_DEFUN([AM_FUNC_TWO], [@!GrepThisString!@AM_FUNC_THREE]) diff --git a/tests/defun2.test b/tests/defun2.test index 1e2677ddc..3aed35797 100755 --- a/tests/defun2.test +++ b/tests/defun2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' dnl if buggy this will require getloadavg.c AC_PROG_CC diff --git a/tests/dejagnu.test b/tests/dejagnu.test index b3e58e7c9..df385b033 100755 --- a/tests/dejagnu.test +++ b/tests/dejagnu.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = dejagnu TESTS = frob.test diff --git a/tests/dejagnu2.test b/tests/dejagnu2.test index 121f6d884..154c08771 100755 --- a/tests/dejagnu2.test +++ b/tests/dejagnu2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_OUTPUT END diff --git a/tests/dejagnu3.test b/tests/dejagnu3.test index 2c5d375bd..42529c0ed 100755 --- a/tests/dejagnu3.test +++ b/tests/dejagnu3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required=runtest . ./defs || Exit 1 -set -e - cat > hammer << 'END' #! /bin/sh echo "Everything looks like a nail to me!" diff --git a/tests/dejagnu4.test b/tests/dejagnu4.test index fa64a319b..0d6a1bde2 100755 --- a/tests/dejagnu4.test +++ b/tests/dejagnu4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2010, 2011 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 @@ -20,8 +20,6 @@ required=runtest . ./defs || Exit 1 -set -e - cat > hammer << 'END' #! /bin/sh echo "Everything looks like a nail to me!" diff --git a/tests/dejagnu5.test b/tests/dejagnu5.test index 0237a0868..9eb51f1ff 100755 --- a/tests/dejagnu5.test +++ b/tests/dejagnu5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required=runtest . ./defs || Exit 1 -set -e - package=$me cat > $package << 'END' diff --git a/tests/dejagnu6.test b/tests/dejagnu6.test index 662ca288b..eba687ea9 100755 --- a/tests/dejagnu6.test +++ b/tests/dejagnu6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required=runtest . ./defs || Exit 1 -set -e - cat > faildeja << 'END' #! /bin/sh echo whatever diff --git a/tests/dejagnu7.test b/tests/dejagnu7.test index 0be4d1f08..d2f36e155 100755 --- a/tests/dejagnu7.test +++ b/tests/dejagnu7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required=runtest . ./defs || Exit 1 -set -e - # Check whether DejaGnu supports --status runtest --help | grep '.*--status' || Exit 77 diff --git a/tests/depacl2.test b/tests/depacl2.test index d085a503c..86af8c1fe 100755 --- a/tests/depacl2.test +++ b/tests/depacl2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2002, 2003, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_C_PROTOTYPES FOO diff --git a/tests/depcomp.test b/tests/depcomp.test index d5b6c7835..f4d5acf90 100755 --- a/tests/depcomp.test +++ b/tests/depcomp.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/depcomp2.test b/tests/depcomp2.test index e8e4a6728..2efa2ad0e 100755 --- a/tests/depcomp2.test +++ b/tests/depcomp2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([subdir/Makefile]) AC_PROG_CC diff --git a/tests/depcomp3.test b/tests/depcomp3.test index 649fada34..8a77f0568 100755 --- a/tests/depcomp3.test +++ b/tests/depcomp3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required='gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/depcomp4.test b/tests/depcomp4.test index 4f2df974c..b995c0836 100755 --- a/tests/depcomp4.test +++ b/tests/depcomp4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required='libtoolize gcc makedepend' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/depcomp5.test b/tests/depcomp5.test index 4fe7e1689..586a98b60 100755 --- a/tests/depcomp5.test +++ b/tests/depcomp5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ required='icc' . ./defs || Exit 1 -set -e - # Automake supports icc since version 7.0 through a dedicated depcomp mode. # icc 8.0 and greater understand gcc options, so depmode is set to gcc. if icc -V -help 2>&1 | grep 'Version 7'; then diff --git a/tests/depcomp6.test b/tests/depcomp6.test index ea15e20ad..b937b9fe8 100755 --- a/tests/depcomp6.test +++ b/tests/depcomp6.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/depcomp7.test b/tests/depcomp7.test index 47f09fc4a..f404039ea 100755 --- a/tests/depcomp7.test +++ b/tests/depcomp7.test @@ -19,8 +19,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/depcomp8a.test b/tests/depcomp8a.test index b4a0e3ac3..3ac45fe22 100755 --- a/tests/depcomp8a.test +++ b/tests/depcomp8a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/depcomp8b.test b/tests/depcomp8b.test index 1ae745961..3ab524337 100755 --- a/tests/depcomp8b.test +++ b/tests/depcomp8b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -22,8 +22,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/depdist.test b/tests/depdist.test index f61ddf062..338763a65 100755 --- a/tests/depdist.test +++ b/tests/depdist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - rm -f configure.in mkdir config diff --git a/tests/depend.test b/tests/depend.test index 5714c98f6..98b13070d 100755 --- a/tests/depend.test +++ b/tests/depend.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1999, 2001, 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2001, 2002, 2004, 2011 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 @@ -20,8 +21,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/depend2.test b/tests/depend2.test index 57d87d763..dd8fe6e1d 100755 --- a/tests/depend2.test +++ b/tests/depend2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -22,8 +22,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/depend3.test b/tests/depend3.test index f12e460ec..1c7b29769 100755 --- a/tests/depend3.test +++ b/tests/depend3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_SUBST(DEPS) diff --git a/tests/depend4.test b/tests/depend4.test index 451c0181a..b1ca76eee 100755 --- a/tests/depend4.test +++ b/tests/depend4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in $ACLOCAL diff --git a/tests/depend5.test b/tests/depend5.test index 0d9be3be1..bd14c72d5 100755 --- a/tests/depend5.test +++ b/tests/depend5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << END AC_PROG_CC AC_OUTPUT diff --git a/tests/depend6.test b/tests/depend6.test index de2adf91e..d75a4a628 100755 --- a/tests/depend6.test +++ b/tests/depend6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << END AC_PROG_CC AC_OUTPUT diff --git a/tests/destdir.test b/tests/destdir.test index 951a4b104..0633ce215 100755 --- a/tests/destdir.test +++ b/tests/destdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -23,8 +23,6 @@ required='ro-dir' . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/dirforbid.test b/tests/dirforbid.test index 3ab319d2a..7601929aa 100755 --- a/tests/dirforbid.test +++ b/tests/dirforbid.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC END diff --git a/tests/dirlist.test b/tests/dirlist.test index cfa1ed9aa..89183c6be 100755 --- a/tests/dirlist.test +++ b/tests/dirlist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<EOF AC_INIT AM_INIT_GUILE_MODULE diff --git a/tests/dirlist2.test b/tests/dirlist2.test index 5f4961404..e7c2c93f1 100755 --- a/tests/dirlist2.test +++ b/tests/dirlist2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2006, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<EOF AC_INIT AM_INIT_GUILE_MODULE diff --git a/tests/discover.test b/tests/discover.test index f31960406..e54daff77 100755 --- a/tests/discover.test +++ b/tests/discover.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_RANLIB AC_PROG_CC diff --git a/tests/distcleancheck.test b/tests/distcleancheck.test index 0f32e33c4..b27ab07a1 100755 --- a/tests/distcleancheck.test +++ b/tests/distcleancheck.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/distcom2.test b/tests/distcom2.test index 23841c615..e093e069e 100755 --- a/tests/distcom2.test +++ b/tests/distcom2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2004, 2006, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/distcom3.test b/tests/distcom3.test index 9cc62eadf..fc0c5e24e 100755 --- a/tests/distcom3.test +++ b/tests/distcom3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2006, 2010 Free Software +# Copyright (C) 2001, 2002, 2003, 2004, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' README: echo 'I bet you are reading me.' > README diff --git a/tests/distcom4.test b/tests/distcom4.test index 5dde663ff..1cbc78337 100755 --- a/tests/distcom4.test +++ b/tests/distcom4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2010, 2011 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 @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([tests/autoconf:tests/wrapper.in], [chmod +x tests/autoconf]) diff --git a/tests/distcom5.test b/tests/distcom5.test index 7cadfd5cb..974ab75f7 100755 --- a/tests/distcom5.test +++ b/tests/distcom5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - extract_distcommon () { sed -n -e '/^DIST_COMMON =.*\\$/ { diff --git a/tests/distcom6.test b/tests/distcom6.test index ca715714f..fd7f0abbc 100755 --- a/tests/distcom6.test +++ b/tests/distcom6.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2006, 2010, 2011 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 @@ -22,8 +23,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/distcom7.test b/tests/distcom7.test index c14d94c3c..129bb5763 100755 --- a/tests/distcom7.test +++ b/tests/distcom7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([subdir/Makefile]) AC_PROG_CC diff --git a/tests/distdir.test b/tests/distdir.test index 04ba36389..a576e3da5 100755 --- a/tests/distdir.test +++ b/tests/distdir.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2006, 2007, 2009, 2010 Free -# Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2006, 2007, 2009, 2010, 2011 +# 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 @@ -24,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/distlinks.test b/tests/distlinks.test index 268cfcbb1..3021cae13 100755 --- a/tests/distlinks.test +++ b/tests/distlinks.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo text > file ln -s file lnk || { diff --git a/tests/distlinksbrk.test b/tests/distlinksbrk.test index 2314408ce..45755717d 100755 --- a/tests/distlinksbrk.test +++ b/tests/distlinksbrk.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # We need, for our broken symlinks, names that make it hard to get false # positives when grepping make output to look for them. lnk_base=BrknSymlnk diff --git a/tests/distname.test b/tests/distname.test index 117d98684..f940045a6 100755 --- a/tests/distname.test +++ b/tests/distname.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_SRCDIR([a.c]) AC_PROG_CC diff --git a/tests/dmalloc.test b/tests/dmalloc.test index 629c9494e..38716164f 100755 --- a/tests/dmalloc.test +++ b/tests/dmalloc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_HEADERS([config.h]) AM_WITH_DMALLOC diff --git a/tests/dollar.test b/tests/dollar.test index 77b512981..81d4cbc4b 100755 --- a/tests/dollar.test +++ b/tests/dollar.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2011 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 @@ -23,8 +23,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am <<'EOF' diff --git a/tests/dollarvar.test b/tests/dollarvar.test index 7105cb092..918599028 100755 --- a/tests/dollarvar.test +++ b/tests/dollarvar.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -24,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<'EOF' x = 1 foo$x = 1 diff --git a/tests/dollarvar2.test b/tests/dollarvar2.test index 6fc27379b..e1ac766c8 100755 --- a/tests/dollarvar2.test +++ b/tests/dollarvar2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<'EOF' x = 1 bla = $(foo$(x)) diff --git a/tests/double.test b/tests/double.test index b4e9c50f7..047308c3b 100755 --- a/tests/double.test +++ b/tests/double.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/dup2.test b/tests/dup2.test index 654d99bcf..a1516fc37 100755 --- a/tests/dup2.test +++ b/tests/dup2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_FUNC_STRTOD END diff --git a/tests/else.test b/tests/else.test index 32cf81aaf..9a881b764 100755 --- a/tests/else.test +++ b/tests/else.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'AM_CONDITIONAL(FOO, true)' >> configure.in cat > Makefile.am << 'END' diff --git a/tests/empty.test b/tests/empty.test index db5af8721..8ca73cf9c 100755 --- a/tests/empty.test +++ b/tests/empty.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2007 +# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2007, 2011 # Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in echo 'data_DATA =' >Makefile.am diff --git a/tests/empty2.test b/tests/empty2.test index efebb7012..293adbd07 100755 --- a/tests/empty2.test +++ b/tests/empty2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/empty3.test b/tests/empty3.test index e88152fa6..a9dfd7b6a 100755 --- a/tests/empty3.test +++ b/tests/empty3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/empty4.test b/tests/empty4.test index 71c7552da..958b48d25 100755 --- a/tests/empty4.test +++ b/tests/empty4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_SUBST(ZOO_OBJ) diff --git a/tests/exdir.test b/tests/exdir.test index 013b80a77..1929af8a8 100755 --- a/tests/exdir.test +++ b/tests/exdir.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' htmldir = $(prefix)/html html_DATA = zot.html diff --git a/tests/exdir2.test b/tests/exdir2.test index aca14975c..bd1471271 100755 --- a/tests/exdir2.test +++ b/tests/exdir2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2004, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' quuz_DATA = zot.html pkgdata_DATA = qbert diff --git a/tests/exdir3.test b/tests/exdir3.test index d51bdf9cd..529215423 100755 --- a/tests/exdir3.test +++ b/tests/exdir3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_SUBST([pkgdatadir], ["FOO"]) AC_OUTPUT diff --git a/tests/exeext.test b/tests/exeext.test index 3fd42a81e..70d7efa2e 100755 --- a/tests/exeext.test +++ b/tests/exeext.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -23,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([WANT_MT], [test -z "$revert"]) diff --git a/tests/exeext2.test b/tests/exeext2.test index fc0571228..c81503487 100755 --- a/tests/exeext2.test +++ b/tests/exeext2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2008, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/exeext3.test b/tests/exeext3.test index 28a7d5ebb..637cc585c 100755 --- a/tests/exeext3.test +++ b/tests/exeext3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2007, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/exeext4.test b/tests/exeext4.test index e6cfe7df6..c3f968c42 100755 --- a/tests/exeext4.test +++ b/tests/exeext4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([COND], [test -n "$cond"]) AC_SUBST([programs], ['prg1$(EXEEXT) prg2$(EXEEXT)']) diff --git a/tests/exsource.test b/tests/exsource.test index 2747f6e89..daa5b0130 100755 --- a/tests/exsource.test +++ b/tests/exsource.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2004 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2004, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/ext.test b/tests/ext.test index af2eab281..5ac3cd1ab 100755 --- a/tests/ext.test +++ b/tests/ext.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2006, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 AC_PROG_FC diff --git a/tests/ext2.test b/tests/ext2.test index 185b7085a..ef218ae39 100755 --- a/tests/ext2.test +++ b/tests/ext2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CXX EOF diff --git a/tests/ext3.test b/tests/ext3.test index 0a691c511..191a34e81 100755 --- a/tests/ext3.test +++ b/tests/ext3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' END diff --git a/tests/extra.test b/tests/extra.test index 134e875e2..da41d141e 100755 --- a/tests/extra.test +++ b/tests/extra.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/extra10.test b/tests/extra10.test index 7bd655665..f44b1e2fb 100755 --- a/tests/extra10.test +++ b/tests/extra10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am <<'END' diff --git a/tests/extra11.test b/tests/extra11.test index a0c55ca25..fb7c5594f 100755 --- a/tests/extra11.test +++ b/tests/extra11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am <<'END' diff --git a/tests/extra12.test b/tests/extra12.test index db3bcc759..af079b048 100755 --- a/tests/extra12.test +++ b/tests/extra12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in diff --git a/tests/extra2.test b/tests/extra2.test index e6c85a0f4..66608568e 100755 --- a/tests/extra2.test +++ b/tests/extra2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/extra3.test b/tests/extra3.test index aea67bc0c..557cb84e3 100755 --- a/tests/extra3.test +++ b/tests/extra3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'AC_SUBST(CODICIL)' >> configure.in cat > Makefile.am << 'END' diff --git a/tests/extra4.test b/tests/extra4.test index cf5e4a612..a52c158a4 100755 --- a/tests/extra4.test +++ b/tests/extra4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo 'AC_SUBST(CODICIL)' >> configure.in cat > Makefile.am << 'END' diff --git a/tests/extra5.test b/tests/extra5.test index ebdda3225..e66198dac 100755 --- a/tests/extra5.test +++ b/tests/extra5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/extra6.test b/tests/extra6.test index 0dbf7354d..c68782895 100755 --- a/tests/extra6.test +++ b/tests/extra6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/extra7.test b/tests/extra7.test index 233cb0f84..a746a0809 100755 --- a/tests/extra7.test +++ b/tests/extra7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/extra8.test b/tests/extra8.test index eb9f9a14e..9d729ebca 100755 --- a/tests/extra8.test +++ b/tests/extra8.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/extra9.test b/tests/extra9.test index fefd385a8..1446a4d45 100755 --- a/tests/extra9.test +++ b/tests/extra9.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/extradep.test b/tests/extradep.test index d84182d8f..f17aeba48 100755 --- a/tests/extradep.test +++ b/tests/extradep.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/extradep2.test b/tests/extradep2.test index 7d72e8222..ca8cf5fa4 100755 --- a/tests/extradep2.test +++ b/tests/extradep2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/f90only.test b/tests/f90only.test index 83b9767b5..a2826737f 100755 --- a/tests/f90only.test +++ b/tests/f90only.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_FC END diff --git a/tests/flavor.test b/tests/flavor.test index a7e8f77b4..ca8e7557d 100755 --- a/tests/flavor.test +++ b/tests/flavor.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE AC_OUTPUT diff --git a/tests/flibs.test b/tests/flibs.test index b9fe541bd..11fbdbb01 100755 --- a/tests/flibs.test +++ b/tests/flibs.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 AC_F77_LIBRARY_LDFLAGS diff --git a/tests/fn99.test b/tests/fn99.test index 982a989bf..e80d09f81 100755 --- a/tests/fn99.test +++ b/tests/fn99.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat >Makefile.am <<'END' diff --git a/tests/fn99subdir.test b/tests/fn99subdir.test index 465f2afc0..0f05b5a5e 100755 --- a/tests/fn99subdir.test +++ b/tests/fn99subdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # The name is so that 99 is exactly hit (including final \0). subdirname='cnfsubdir' diff --git a/tests/fnoc.test b/tests/fnoc.test index d2d521cec..f25016898 100755 --- a/tests/fnoc.test +++ b/tests/fnoc.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 END diff --git a/tests/fo.test b/tests/fo.test index 93d7d3f17..a248f0f49 100755 --- a/tests/fo.test +++ b/tests/fo.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 END diff --git a/tests/fonly.test b/tests/fonly.test index b93b60290..a653bef20 100755 --- a/tests/fonly.test +++ b/tests/fonly.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 END diff --git a/tests/forcemiss.test b/tests/forcemiss.test index 4b9f63c7d..7ee186c67 100755 --- a/tests/forcemiss.test +++ b/tests/forcemiss.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - rm -f install-sh echo zot > install-sh diff --git a/tests/forcemiss2.test b/tests/forcemiss2.test index 408ea8ad1..0b6b77529 100755 --- a/tests/forcemiss2.test +++ b/tests/forcemiss2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - rm -f install-sh echo zot > foo diff --git a/tests/fort1.test b/tests/fort1.test index 930ae0236..347ec13ef 100755 --- a/tests/fort1.test +++ b/tests/fort1.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<END bin_PROGRAMS = hello hello_SOURCES = hello.f foo.f95 diff --git a/tests/fort2.test b/tests/fort2.test index 70d13f25e..b3c994c17 100755 --- a/tests/fort2.test +++ b/tests/fort2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'END' diff --git a/tests/fort4.test b/tests/fort4.test index b928a61f8..0aa9e79c7 100755 --- a/tests/fort4.test +++ b/tests/fort4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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,8 +21,6 @@ required='g77 gfortran' . ./defs || Exit 1 -set -e - mkdir sub cat >hello.f <<'END' diff --git a/tests/fort5.test b/tests/fort5.test index d6151a714..c4a4b55ed 100755 --- a/tests/fort5.test +++ b/tests/fort5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2009 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009, 2011 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,8 +21,6 @@ required='libtoolize g77 gfortran' . ./defs || Exit 1 -set -e - mkdir sub cat >hello.f <<'END' diff --git a/tests/fortdep.test b/tests/fortdep.test index 585e7c15a..e70ee987a 100755 --- a/tests/fortdep.test +++ b/tests/fortdep.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_SRCDIR([foo.f]) AC_PROG_F77 diff --git a/tests/gcj.test b/tests/gcj.test index b9819dd7e..5e6ab3374 100755 --- a/tests/gcj.test +++ b/tests/gcj.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' _AM_DEPENDENCIES([GCJ]) AC_SUBST([GCJ]) diff --git a/tests/gcj2.test b/tests/gcj2.test index 3e3af603d..3d60cfff9 100755 --- a/tests/gcj2.test +++ b/tests/gcj2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' _AM_DEPENDENCIES(GCJ) AC_SUBST(GCJ) diff --git a/tests/gcj3.test b/tests/gcj3.test index 565212449..f2f74606f 100755 --- a/tests/gcj3.test +++ b/tests/gcj3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' _AM_DEPENDENCIES([GCJ]) AC_SUBST([GCJ]) diff --git a/tests/gcj4.test b/tests/gcj4.test index b7e14ab27..d5dedd6c7 100755 --- a/tests/gcj4.test +++ b/tests/gcj4.test @@ -19,8 +19,6 @@ required=gcj . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_PROG_GCJ AC_OUTPUT diff --git a/tests/gcj5.test b/tests/gcj5.test index 6ef171d96..f63a8d442 100755 --- a/tests/gcj5.test +++ b/tests/gcj5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' _AM_DEPENDENCIES(GCJ) END diff --git a/tests/gcj6.test b/tests/gcj6.test index be5f49c35..347afd15c 100755 --- a/tests/gcj6.test +++ b/tests/gcj6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ required='gcj' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_PROG_GCJ AC_OUTPUT diff --git a/tests/getopt.test b/tests/getopt.test index bc829846f..9889e3dff 100755 --- a/tests/getopt.test +++ b/tests/getopt.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2008, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # This is expected to fail ... AUTOMAKE_fails -Wnonexistent grep ':.*nonexistent' stderr diff --git a/tests/gettext.test b/tests/gettext.test index b0bb2d224..98c2a4553 100755 --- a/tests/gettext.test +++ b/tests/gettext.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2011 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 @@ -19,8 +19,6 @@ required='gettext' . ./defs || Exit 1 -set -e - cat >>configure.in <<END AM_GNU_GETTEXT AM_GNU_GETTEXT_VERSION([0.14.3]) diff --git a/tests/gettext2.test b/tests/gettext2.test index a8c95ad36..dad775a15 100755 --- a/tests/gettext2.test +++ b/tests/gettext2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2010, 2011 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 @@ -20,8 +21,6 @@ required='gettext' . ./defs || Exit 1 -set -e - cat >>configure.in <<END AM_GNU_GETTEXT([external]) AC_OUTPUT diff --git a/tests/gettext3.test b/tests/gettext3.test index a25af8747..46b3cbc8c 100755 --- a/tests/gettext3.test +++ b/tests/gettext3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ required='gettext' . ./defs || Exit 1 -set -e - cat >>configure.in <<END AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_INTL_SUBDIR diff --git a/tests/gnits.test b/tests/gnits.test index 897d0abe7..7803a2ac4 100755 --- a/tests/gnits.test +++ b/tests/gnits.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [3.5.3.2]) AM_INIT_AUTOMAKE diff --git a/tests/gnits2.test b/tests/gnits2.test index bb6abaaad..b5e750fcb 100755 --- a/tests/gnits2.test +++ b/tests/gnits2.test @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/gnits3.test b/tests/gnits3.test index 32246521b..d9965eee4 100755 --- a/tests/gnits3.test +++ b/tests/gnits3.test @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/gnumake.test b/tests/gnumake.test index 72bfa663d..f5f299fd7 100755 --- a/tests/gnumake.test +++ b/tests/gnumake.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/GNUmakefile]) AC_OUTPUT diff --git a/tests/gnuwarn.test b/tests/gnuwarn.test index 9c8aeb402..43987b97e 100755 --- a/tests/gnuwarn.test +++ b/tests/gnuwarn.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/gnuwarn2.test b/tests/gnuwarn2.test index 0227e3a8f..b59f566c7 100755 --- a/tests/gnuwarn2.test +++ b/tests/gnuwarn2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([gnuwarn2], [1.0]) AM_INIT_AUTOMAKE([no-installman]) diff --git a/tests/header.test b/tests/header.test index bd06b1679..9d16747b2 100755 --- a/tests/header.test +++ b/tests/header.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -25,8 +26,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([MY_HEADERS]) AC_PROG_CC diff --git a/tests/help-depend.test b/tests/help-depend.test index e676e5e62..e25f264ce 100755 --- a/tests/help-depend.test +++ b/tests/help-depend.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_DEP_TRACK diff --git a/tests/help-depend2.test b/tests/help-depend2.test index 6bad661dd..0eb5447e6 100755 --- a/tests/help-depend2.test +++ b/tests/help-depend2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/help-dmalloc.test b/tests/help-dmalloc.test index 51b3ba4be..708805bdd 100755 --- a/tests/help-dmalloc.test +++ b/tests/help-dmalloc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_WITH_DMALLOC diff --git a/tests/help-init.test b/tests/help-init.test index fdd9fa04d..769862361 100755 --- a/tests/help-init.test +++ b/tests/help-init.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/help-lispdir.test b/tests/help-lispdir.test index 5eb7ab9bb..a30802130 100755 --- a/tests/help-lispdir.test +++ b/tests/help-lispdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_PATH_LISPDIR diff --git a/tests/help-maintainer.test b/tests/help-maintainer.test index 6933d0c65..a4b2d8521 100755 --- a/tests/help-maintainer.test +++ b/tests/help-maintainer.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_MAINTAINER_MODE diff --git a/tests/help-multilib.test b/tests/help-multilib.test index 1657c345b..e0bf6c782 100755 --- a/tests/help-multilib.test +++ b/tests/help-multilib.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_ENABLE_MULTILIB diff --git a/tests/help-regex.test b/tests/help-regex.test index 3eff5f984..aecfed973 100755 --- a/tests/help-regex.test +++ b/tests/help-regex.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_WITH_REGEX diff --git a/tests/help-silent.test b/tests/help-silent.test index e59f2f1cb..e41d166f3 100755 --- a/tests/help-silent.test +++ b/tests/help-silent.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_SILENT_RULES diff --git a/tests/help-upc.test b/tests/help-upc.test index 8f5ff5feb..a30c84cf0 100755 --- a/tests/help-upc.test +++ b/tests/help-upc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_PROG_UPC diff --git a/tests/help.test b/tests/help.test index d8aa96f42..f0eeed283 100755 --- a/tests/help.test +++ b/tests/help.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # Ensure we run in an empty directory. mkdir emptydir cd emptydir diff --git a/tests/help2.test b/tests/help2.test index dafbbf666..f01635982 100755 --- a/tests/help2.test +++ b/tests/help2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ # contains a broken configure.in and a broken acinclude.m4. . ./defs || Exit 1 -set -e - # Ensure we run in a new, clean directory. mkdir cleandir cd cleandir diff --git a/tests/help3.test b/tests/help3.test index d3652ea20..9d026d080 100755 --- a/tests/help3.test +++ b/tests/help3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # We must have full control over the content of the current directory. mkdir cleandir cd cleandir diff --git a/tests/help4.test b/tests/help4.test index 3efb076e7..34866880f 100755 --- a/tests/help4.test +++ b/tests/help4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # Ensure we run in an empty directory. mkdir emptydir cd emptydir diff --git a/tests/hfs.test b/tests/hfs.test index 8f0c5ccd6..cf0a2434a 100755 --- a/tests/hfs.test +++ b/tests/hfs.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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,8 +21,6 @@ # Report from Peter O'Gorman. . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in : >CHANGELOG diff --git a/tests/hosts.test b/tests/hosts.test index 2df150b43..ec5f12eb6 100755 --- a/tests/hosts.test +++ b/tests/hosts.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - : >Makefile.am $ACLOCAL diff --git a/tests/implicit.test b/tests/implicit.test index c1c34792c..64feca762 100755 --- a/tests/implicit.test +++ b/tests/implicit.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/include.test b/tests/include.test index 180b025f0..2b272b9d2 100755 --- a/tests/include.test +++ b/tests/include.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2005, 2006, 2010 Free Software +# Copyright (C) 1999, 2001, 2002, 2005, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<END AC_OUTPUT END diff --git a/tests/include2.test b/tests/include2.test index b028a2c79..9a75963fb 100755 --- a/tests/include2.test +++ b/tests/include2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/info.test b/tests/info.test index e99a1875b..cf03cbd62 100755 --- a/tests/info.test +++ b/tests/info.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = foo.texi END diff --git a/tests/init.test b/tests/init.test index 895bad6b3..0e2da06ad 100755 --- a/tests/init.test +++ b/tests/init.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - for ac_init_args in '' '([x])'; do for am_init_args in '' '([1.10])'; do rm -rf aclocal.m4 autom4te*.cache diff --git a/tests/init2.test b/tests/init2.test index 31631d707..9e069ebb7 100755 --- a/tests/init2.test +++ b/tests/init2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >configure.in <<END AC_INIT([init2], [1.0]) AM_INIT_AUTOMAKE([nosuchoption]) diff --git a/tests/insh2.test b/tests/insh2.test index c3da9a981..e0a6bcd2f 100755 --- a/tests/insh2.test +++ b/tests/insh2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010 Free -# Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2010, 2011 +# 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' pkgdata_DATA = magic: diff --git a/tests/install2.test b/tests/install2.test index 3cc71f552..2afdd375d 100755 --- a/tests/install2.test +++ b/tests/install2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2006, 2010 Free Software +# Copyright (C) 1999, 2000, 2001, 2002, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT dnl Prevent automake from looking in .. and ../.. diff --git a/tests/installdir.test b/tests/installdir.test index b09f49534..ff4ced5ce 100755 --- a/tests/installdir.test +++ b/tests/installdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' installdirs-local: @echo here diff --git a/tests/instdat.test b/tests/instdat.test index d5b4d07e9..544b6cb6d 100755 --- a/tests/instdat.test +++ b/tests/instdat.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<END AC_SUBST([INSTALL_DATA]) END diff --git a/tests/instdat2.test b/tests/instdat2.test index c63739789..7dd911a73 100755 --- a/tests/instdat2.test +++ b/tests/instdat2.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am << 'EOF' # User directories. inclexecdir = $(exec_prefix)/include diff --git a/tests/instdir-java.test b/tests/instdir-java.test index 6adc82e3e..5831f2772 100755 --- a/tests/instdir-java.test +++ b/tests/instdir-java.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_CHECK_PROG([HAS_JAVAC], [javac], [:], [exit]) ($HAS_JAVAC 77); $HAS_JAVAC 77 diff --git a/tests/instdir-lisp.test b/tests/instdir-lisp.test index 475e93583..5cfbf0436 100755 --- a/tests/instdir-lisp.test +++ b/tests/instdir-lisp.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ required=emacs . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_PATH_LISPDIR AC_OUTPUT diff --git a/tests/instdir-ltlib.test b/tests/instdir-ltlib.test index 1fb4f37a8..ec25bde12 100755 --- a/tests/instdir-ltlib.test +++ b/tests/instdir-ltlib.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -20,8 +20,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/instdir-prog.test b/tests/instdir-prog.test index 6a73b7572..b5b150f45 100755 --- a/tests/instdir-prog.test +++ b/tests/instdir-prog.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/instdir-python.test b/tests/instdir-python.test index 2af2408cf..21b550ebb 100755 --- a/tests/instdir-python.test +++ b/tests/instdir-python.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_PATH_PYTHON AC_OUTPUT diff --git a/tests/instdir-texi.test b/tests/instdir-texi.test index 75b6f822e..9de8428c2 100755 --- a/tests/instdir-texi.test +++ b/tests/instdir-texi.test @@ -20,8 +20,6 @@ required='makeinfo-html tex texi2dvi' . ./defs || Exit 1 -set -e - dvips --help || Exit 77 pdfetex --help || pdftex --help || Exit 77 diff --git a/tests/instdir.test b/tests/instdir.test index 1132738d6..89e795045 100755 --- a/tests/instdir.test +++ b/tests/instdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_SUBST([foodir], ['${datadir}'/foo]) AC_OUTPUT diff --git a/tests/instdir2.test b/tests/instdir2.test index b0b78b764..fd9ab0579 100755 --- a/tests/instdir2.test +++ b/tests/instdir2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_SUBST([foodir], ['${datadir}'/foo]) AC_OUTPUT diff --git a/tests/instexec.test b/tests/instexec.test index 411f867d9..f3f5a5d5d 100755 --- a/tests/instexec.test +++ b/tests/instexec.test @@ -1,5 +1,6 @@ #!/bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am $ACLOCAL diff --git a/tests/instfail-info.test b/tests/instfail-info.test index 70d46574c..becf59b00 100755 --- a/tests/instfail-info.test +++ b/tests/instfail-info.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -22,8 +22,6 @@ required='makeinfo' . ./defs || Exit 1 -set -e - cat >>configure.in <<END AC_OUTPUT END diff --git a/tests/instfail-java.test b/tests/instfail-java.test index 2cb8afbc6..4ebc2c3eb 100755 --- a/tests/instfail-java.test +++ b/tests/instfail-java.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_CHECK_PROG([HAS_JAVAC], [javac], [:], [exit]) ($HAS_JAVAC 77); $HAS_JAVAC 77 diff --git a/tests/instfail-libtool.test b/tests/instfail-libtool.test index 1e756a676..b580c400e 100755 --- a/tests/instfail-libtool.test +++ b/tests/instfail-libtool.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -22,8 +22,6 @@ required='libtool libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<END AC_PROG_LIBTOOL AC_OUTPUT diff --git a/tests/instfail.test b/tests/instfail.test index 38a1c9c99..d7fa73641 100755 --- a/tests/instfail.test +++ b/tests/instfail.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<END AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/insthook.test b/tests/insthook.test index a315447e6..ee89057cc 100755 --- a/tests/insthook.test +++ b/tests/insthook.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2005, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2005, 2007, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_LN_S AC_OUTPUT diff --git a/tests/instman.test b/tests/instman.test index 89c1a5e28..755770576 100755 --- a/tests/instman.test +++ b/tests/instman.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2001, 2002, 2003, 2006 Free Software +# Copyright (C) 1996, 1998, 2001, 2002, 2003, 2006, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'EOF' diff --git a/tests/instman2.test b/tests/instman2.test index c51921418..d082c0891 100755 --- a/tests/instman2.test +++ b/tests/instman2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' man8_MANS = frob.8 EOF diff --git a/tests/instmany-mans.test b/tests/instmany-mans.test index fe55be43e..b8f52a3ff 100755 --- a/tests/instmany-mans.test +++ b/tests/instmany-mans.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - # In order to have a useful test on modern systems (which have a high # limit, if any), use a fake install program that errors out for more # than 2K characters in a command line. The POSIX limit is 4096, but diff --git a/tests/instmany-python.test b/tests/instmany-python.test index 7648e1bf0..ab4aa73a0 100755 --- a/tests/instmany-python.test +++ b/tests/instmany-python.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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,8 +21,6 @@ required='python' . ./defs || Exit 1 -set -e - limit=2500 subdir=long_subdir_name_with_many_characters nfiles=81 diff --git a/tests/instmany.test b/tests/instmany.test index 2de026d70..effee8289 100755 --- a/tests/instmany.test +++ b/tests/instmany.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -28,8 +28,6 @@ . ./defs || Exit 1 -set -e - # In order to have a useful test on modern systems (which have a high # limit, if any), use a fake install program that errors out for more # than 2K characters in a command line. The POSIX limit is 4096, but diff --git a/tests/instsh.test b/tests/instsh.test index 61f5f9ecf..53397c345 100755 --- a/tests/instsh.test +++ b/tests/instsh.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1999, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1999, 2001, 2002, 2003, 2011 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 @@ -20,8 +21,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am rm -f install-sh diff --git a/tests/instsh2.test b/tests/instsh2.test index 778c1a3e2..a3ba30046 100755 --- a/tests/instsh2.test +++ b/tests/instsh2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2006, 2008, 2011 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 @@ -17,8 +18,6 @@ # Various install-sh checks . ./defs || Exit 1 -set -e - # Basic errors ./install-sh && Exit 1 ./install-sh -m 644 dest && Exit 1 diff --git a/tests/instsh3.test b/tests/instsh3.test index b7b8761ba..a2bb9d344 100755 --- a/tests/instsh3.test +++ b/tests/instsh3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008, 2011 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 @@ -18,8 +18,6 @@ required=non-root . ./defs || Exit 1 -set -e - # Solaris /usr/ucb/touch does not accept -t. touch -t $old_timestamp foo || Exit 77 diff --git a/tests/interp.test b/tests/interp.test index 82938f978..e4352d7d2 100755 --- a/tests/interp.test +++ b/tests/interp.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/interp2.test b/tests/interp2.test index a25d531f3..804305e9b 100755 --- a/tests/interp2.test +++ b/tests/interp2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PATH_X diff --git a/tests/java.test b/tests/java.test index d5210cd14..f4259d4ed 100755 --- a/tests/java.test +++ b/tests/java.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2004, 2007, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_CHECK_PROG([HAS_JAVAC], [javac], [:], [exit]) ($HAS_JAVAC 77); $HAS_JAVAC 77 diff --git a/tests/java2.test b/tests/java2.test index d3b942ca8..b4f1dafa6 100755 --- a/tests/java2.test +++ b/tests/java2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL(WITH_JDK, false) AC_OUTPUT diff --git a/tests/java3.test b/tests/java3.test index 78957697d..5aa179693 100755 --- a/tests/java3.test +++ b/tests/java3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([WHO_CARES], false) AC_OUTPUT diff --git a/tests/javaprim.test b/tests/javaprim.test index 988024d58..f0b8a1a02 100755 --- a/tests/javaprim.test +++ b/tests/javaprim.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([JAVA]) END diff --git a/tests/javasubst.test b/tests/javasubst.test index ae6bb784b..6b867d986 100755 --- a/tests/javasubst.test +++ b/tests/javasubst.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([JAVAC]) END diff --git a/tests/ldadd.test b/tests/ldadd.test index 7f4fce89a..12785fa55 100755 --- a/tests/ldadd.test +++ b/tests/ldadd.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997, 1999, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1997, 1999, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/ldflags.test b/tests/ldflags.test index d078eaa7d..96fb21302 100755 --- a/tests/ldflags.test +++ b/tests/ldflags.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/lex.test b/tests/lex.test index c671bde63..3327eb484 100755 --- a/tests/lex.test +++ b/tests/lex.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2001, 2002, 2006 Free Software Foundation, Inc. +# Copyright (C) 1996, 1998, 2001, 2002, 2006, 2011 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 @@ -16,8 +17,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_LEX diff --git a/tests/lex2.test b/tests/lex2.test index d7499e1cc..72be79d7d 100755 --- a/tests/lex2.test +++ b/tests/lex2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/lex3.test b/tests/lex3.test index e2b01d882..bc8839990 100755 --- a/tests/lex3.test +++ b/tests/lex3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2004, 2010 Free Software +# Copyright (C) 1999, 2001, 2002, 2003, 2004, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -22,8 +22,6 @@ required='gcc flex GNUmake' . ./defs || Exit 1 -set -e - # Ignore user CFLAGS. CFLAGS= export CFLAGS diff --git a/tests/lex4.test b/tests/lex4.test index b171160dc..f2bf574fd 100755 --- a/tests/lex4.test +++ b/tests/lex4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2006, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/lex5.test b/tests/lex5.test index 5c688d782..220bf50f6 100755 --- a/tests/lex5.test +++ b/tests/lex5.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ required='gcc GNUmake flex' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/lexcpp.test b/tests/lexcpp.test index b95b5f13f..7fd409a35 100755 --- a/tests/lexcpp.test +++ b/tests/lexcpp.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AC_PROG_LEX diff --git a/tests/lexvpath.test b/tests/lexvpath.test index 378795ec0..876541a83 100755 --- a/tests/lexvpath.test +++ b/tests/lexvpath.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -25,8 +25,6 @@ required='gcc flex' . ./defs || Exit 1 -set -e - distdir=$me-1.0 cat > lexoutroot.in << 'END' diff --git a/tests/lflags.test b/tests/lflags.test index 97de60851..a725c5c55 100755 --- a/tests/lflags.test +++ b/tests/lflags.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >fake-lex <<'END' #!/bin/sh echo '/*' "$*" '*/' >lex.yy.c diff --git a/tests/lflags2.test b/tests/lflags2.test index df766b2b6..39f8a97f9 100755 --- a/tests/lflags2.test +++ b/tests/lflags2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -22,8 +22,6 @@ required=g++ # FIXME: any working C++ compiler should be OK . ./defs || Exit 1 -set -e - cat >fake-lex <<'END' #!/bin/sh echo '/*' "$*" '*/' >lex.yy.c diff --git a/tests/libexec.test b/tests/libexec.test index a6561b782..a305f78ec 100755 --- a/tests/libexec.test +++ b/tests/libexec.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' libexec_PROGRAMS = foo pkglibexec_PROGRAMS = bar diff --git a/tests/libobj-basic.test b/tests/libobj-basic.test index 64b9c2bf9..0fe0278c7 100755 --- a/tests/libobj-basic.test +++ b/tests/libobj-basic.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.proto cat >> configure.proto << 'END' AC_PROG_CC diff --git a/tests/libobj10.test b/tests/libobj10.test index 7897351aa..f891e85f4 100755 --- a/tests/libobj10.test +++ b/tests/libobj10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj12.test b/tests/libobj12.test index 747d7a0d9..89b70cfa1 100755 --- a/tests/libobj12.test +++ b/tests/libobj12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj13.test b/tests/libobj13.test index 6d1e68dfd..c572dd45b 100755 --- a/tests/libobj13.test +++ b/tests/libobj13.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/libobj14.test b/tests/libobj14.test index 08841c36d..4f05871ec 100755 --- a/tests/libobj14.test +++ b/tests/libobj14.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -22,8 +22,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_PROG_CC AC_LIBSOURCE([bar.c]) diff --git a/tests/libobj15a.test b/tests/libobj15a.test index 51da834bc..044e3db85 100755 --- a/tests/libobj15a.test +++ b/tests/libobj15a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj15b.test b/tests/libobj15b.test index 3816602a9..4548a2a2a 100755 --- a/tests/libobj15b.test +++ b/tests/libobj15b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj15c.test b/tests/libobj15c.test index 29e0aa7d9..c39ac996b 100755 --- a/tests/libobj15c.test +++ b/tests/libobj15c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj16a.test b/tests/libobj16a.test index a67381976..9946bc5b0 100755 --- a/tests/libobj16a.test +++ b/tests/libobj16a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.proto cat >> configure.proto << 'END' AC_PROG_CC diff --git a/tests/libobj16b.test b/tests/libobj16b.test index f2ac76d3f..1039558e0 100755 --- a/tests/libobj16b.test +++ b/tests/libobj16b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mv configure.in configure.proto cat >> configure.proto << 'END' AC_PROG_CC diff --git a/tests/libobj17.test b/tests/libobj17.test index ddb3c79d8..4f9db57f9 100755 --- a/tests/libobj17.test +++ b/tests/libobj17.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj18.test b/tests/libobj18.test index e03493e23..5fba7804f 100755 --- a/tests/libobj18.test +++ b/tests/libobj18.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj19.test b/tests/libobj19.test index e19a7591e..bc495b5b5 100755 --- a/tests/libobj19.test +++ b/tests/libobj19.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_LIBOBJ_DIR([libobj-dir]) AC_PROG_CC diff --git a/tests/libobj2.test b/tests/libobj2.test index 913fef9bf..3b3ec9828 100755 --- a/tests/libobj2.test +++ b/tests/libobj2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([subdir/Makefile]) AC_PROG_CC diff --git a/tests/libobj20a.test b/tests/libobj20a.test index 25c3cf331..2f90c843c 100755 --- a/tests/libobj20a.test +++ b/tests/libobj20a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_LIBOBJ_DIR([libobj-dir]) AC_PROG_CC diff --git a/tests/libobj20b.test b/tests/libobj20b.test index f57a78b45..d130a8abe 100755 --- a/tests/libobj20b.test +++ b/tests/libobj20b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_LIBOBJ_DIR([libobj-dir]) AC_PROG_CC diff --git a/tests/libobj20c.test b/tests/libobj20c.test index 463518369..1fb1f9d97 100755 --- a/tests/libobj20c.test +++ b/tests/libobj20c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_LIBOBJ_DIR([libobj-dir]) AC_PROG_CC diff --git a/tests/libobj3.test b/tests/libobj3.test index 29aa6d55d..04d4405b1 100755 --- a/tests/libobj3.test +++ b/tests/libobj3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_RANLIB END diff --git a/tests/libobj4.test b/tests/libobj4.test index d31e5ff20..8852262dd 100755 --- a/tests/libobj4.test +++ b/tests/libobj4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = foo END diff --git a/tests/libobj5.test b/tests/libobj5.test index 7aa218a9f..d92aca159 100755 --- a/tests/libobj5.test +++ b/tests/libobj5.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = joe LDADD = @LIBOBJS@ diff --git a/tests/libobj7.test b/tests/libobj7.test index be51db7fa..b7556b70b 100755 --- a/tests/libobj7.test +++ b/tests/libobj7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/libobj8.test b/tests/libobj8.test index 95f21ed1e..97c8403fa 100755 --- a/tests/libobj8.test +++ b/tests/libobj8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2006, 2010 Free Software +# Copyright (C) 1998, 2000, 2001, 2002, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CC_STDC diff --git a/tests/library.test b/tests/library.test index b35e883d7..e3a981397 100755 --- a/tests/library.test +++ b/tests/library.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2008, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2001, 2002, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_RANLIB AM_MAINTAINER_MODE diff --git a/tests/library2.test b/tests/library2.test index 0dbff2899..69f387a76 100755 --- a/tests/library2.test +++ b/tests/library2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' EXTRA_LIBRARIES = libfoo.a END diff --git a/tests/library3.test b/tests/library3.test index 9d30d87ea..8e3a0c93c 100755 --- a/tests/library3.test +++ b/tests/library3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2005, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AM_CONDITIONAL([A], [:]) diff --git a/tests/libtoo10.test b/tests/libtoo10.test index 51a68d487..72310bb72 100755 --- a/tests/libtoo10.test +++ b/tests/libtoo10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 2007, 2009, 2011 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 @@ -19,8 +19,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_LIBTOOL AC_OUTPUT diff --git a/tests/libtoo11.test b/tests/libtoo11.test index 850ca8203..4cfcda5bd 100755 --- a/tests/libtoo11.test +++ b/tests/libtoo11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +19,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_LIBTOOL m4_ifdef([LT_OUTPUT], [LT_OUTPUT]) diff --git a/tests/libtool.test b/tests/libtool.test index a75eada15..e88c2084b 100755 --- a/tests/libtool.test +++ b/tests/libtool.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_LIBTOOL_DLOPEN AC_DISABLE_SHARED diff --git a/tests/libtool2.test b/tests/libtool2.test index e4ea89ef4..6e268dd60 100755 --- a/tests/libtool2.test +++ b/tests/libtool2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/libtool3.test b/tests/libtool3.test index 3427f2892..3a6a40eab 100755 --- a/tests/libtool3.test +++ b/tests/libtool3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2009 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2009, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_LIBTOOL diff --git a/tests/libtool4.test b/tests/libtool4.test index bcc9b0fc0..5b2e30e25 100755 --- a/tests/libtool4.test +++ b/tests/libtool4.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' EXTRA_LTLIBRARIES = liblib.la END diff --git a/tests/libtool5.test b/tests/libtool5.test index c7f0476db..4bec20d09 100755 --- a/tests/libtool5.test +++ b/tests/libtool5.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2011 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,8 +21,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [false]) diff --git a/tests/libtool6.test b/tests/libtool6.test index ad01b149a..a17e4ee8f 100755 --- a/tests/libtool6.test +++ b/tests/libtool6.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [false]) diff --git a/tests/libtool7.test b/tests/libtool7.test index a2f912f43..afa9b1c57 100755 --- a/tests/libtool7.test +++ b/tests/libtool7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2007, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_LIBTOOL_DLOPEN diff --git a/tests/libtool8.test b/tests/libtool8.test index a1bb88a5c..d539dc4f0 100755 --- a/tests/libtool8.test +++ b/tests/libtool8.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [false]) diff --git a/tests/libtool9.test b/tests/libtool9.test index c0d9688a8..ab03f580a 100755 --- a/tests/libtool9.test +++ b/tests/libtool9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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,8 +21,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/license.test b/tests/license.test index 4a6979108..d0f936fb0 100755 --- a/tests/license.test +++ b/tests/license.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ required=makeinfo . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in cat >Makefile.am <<\EOF test1: distdir diff --git a/tests/license2.test b/tests/license2.test index 75f7811fd..34bfdf80b 100755 --- a/tests/license2.test +++ b/tests/license2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = gnu END diff --git a/tests/link_c_cxx.test b/tests/link_c_cxx.test index d1a093cce..fd3cdc3b9 100755 --- a/tests/link_c_cxx.test +++ b/tests/link_c_cxx.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/link_dist.test b/tests/link_dist.test index 661d6831e..77c378563 100755 --- a/tests/link_dist.test +++ b/tests/link_dist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/link_f90_only.test b/tests/link_f90_only.test index 979eb673d..7afe52ce3 100755 --- a/tests/link_f90_only.test +++ b/tests/link_f90_only.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_FC END diff --git a/tests/link_f_only.test b/tests/link_f_only.test index c4df8cefb..5484f58c3 100755 --- a/tests/link_f_only.test +++ b/tests/link_f_only.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 END diff --git a/tests/link_fc.test b/tests/link_fc.test index 8c80f8c36..78a24577e 100755 --- a/tests/link_fc.test +++ b/tests/link_fc.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_F77 diff --git a/tests/link_fccxx.test b/tests/link_fccxx.test index 30263d01e..c60995547 100755 --- a/tests/link_fccxx.test +++ b/tests/link_fccxx.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/link_fcxx.test b/tests/link_fcxx.test index c75ffc74c..75aee341e 100755 --- a/tests/link_fcxx.test +++ b/tests/link_fcxx.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AC_PROG_F77 diff --git a/tests/link_override.test b/tests/link_override.test index 41788a187..bcce05ab0 100755 --- a/tests/link_override.test +++ b/tests/link_override.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/lisp2.test b/tests/lisp2.test index 2fccdb2ec..3b795dbfa 100755 --- a/tests/lisp2.test +++ b/tests/lisp2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo 1 cat > Makefile.am << 'END' diff --git a/tests/lisp3.test b/tests/lisp3.test index 809d49103..a8a0fc36b 100755 --- a/tests/lisp3.test +++ b/tests/lisp3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008, 2011 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 @@ -19,8 +19,6 @@ required=emacs . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' lisp_LISP = am-one.el am-two.el am-three.el EXTRA_DIST = am-one.el am-two.el diff --git a/tests/lisp4.test b/tests/lisp4.test index 080ab3bc5..3834746a1 100755 --- a/tests/lisp4.test +++ b/tests/lisp4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2011 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 @@ -20,8 +20,6 @@ required=emacs . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' lisp_LISP = am-one.el am-two.el am-three.el EXTRA_DIST = am-one.el am-two.el diff --git a/tests/lisp5.test b/tests/lisp5.test index e7b29e729..93ac9e132 100755 --- a/tests/lisp5.test +++ b/tests/lisp5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2009, 2011 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 @@ -20,8 +20,6 @@ required=emacs . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' lisp_DATA = am-one.el am-two.el am-three.el EXTRA_DIST = am-one.el am-two.el diff --git a/tests/lisp6.test b/tests/lisp6.test index f38653495..d42451189 100755 --- a/tests/lisp6.test +++ b/tests/lisp6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. +# Copyright (C) 2004, 2005, 2007, 2011 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 @@ -19,8 +19,6 @@ required=emacs . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' dist_lisp_LISP = am-one.el if WANT_TWO diff --git a/tests/lisp7.test b/tests/lisp7.test index cf52527d8..ad231dd8b 100755 --- a/tests/lisp7.test +++ b/tests/lisp7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' dist_lisp_LISP = am-one.el am-two.el am-three.el EOF diff --git a/tests/lisp8.test b/tests/lisp8.test index 8a3edf2f4..afba76c45 100755 --- a/tests/lisp8.test +++ b/tests/lisp8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2008 Free Software Foundation, Inc. +# Copyright (C) 2005, 2008, 2011 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 @@ -19,8 +19,6 @@ required='GNUmake emacs' . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' dist_lisp_LISP = am-one.el am-two.el am-three.el EOF diff --git a/tests/lispdry.test b/tests/lispdry.test index 3bca21a31..e786ec33f 100755 --- a/tests/lispdry.test +++ b/tests/lispdry.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ required='emacs non-root' . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' dist_lisp_LISP = am-one.el am-two.el am-three.el EOF diff --git a/tests/listval.test b/tests/listval.test index 5a71a05be..677fe3f0a 100755 --- a/tests/listval.test +++ b/tests/listval.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -20,8 +21,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([LTLIBOBJS]) AC_PROG_LIBTOOL diff --git a/tests/location.test b/tests/location.test index bdd00c403..9013e31d9 100755 --- a/tests/location.test +++ b/tests/location.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [true]) diff --git a/tests/longlin2.test b/tests/longlin2.test index 2d81afa92..1d30b285a 100755 --- a/tests/longlin2.test +++ b/tests/longlin2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - n=1 files= match= diff --git a/tests/longline.test b/tests/longline.test index aefd9a88c..77f6e1e4d 100755 --- a/tests/longline.test +++ b/tests/longline.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - (echo DUMMY = some_long_filename_1; for i in 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do diff --git a/tests/ltcond.test b/tests/ltcond.test index 0350a3d8a..8ede51b22 100755 --- a/tests/ltcond.test +++ b/tests/ltcond.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2007, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([WANT_LIBFOO], [true]) AM_CONDITIONAL([WANT_LIBBAR], [false]) diff --git a/tests/ltcond2.test b/tests/ltcond2.test index 1687513cd..d4bf0647b 100755 --- a/tests/ltcond2.test +++ b/tests/ltcond2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/ltconv.test b/tests/ltconv.test index 0ec2132d2..2ea2705eb 100755 --- a/tests/ltconv.test +++ b/tests/ltconv.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2007, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/ltdeps.test b/tests/ltdeps.test index 43d0ae3cf..3c41ec317 100755 --- a/tests/ltdeps.test +++ b/tests/ltdeps.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_LIBTOOL AC_PROG_CXX diff --git a/tests/ltinstloc.test b/tests/ltinstloc.test index 18d306d9a..dd1c5d6fd 100755 --- a/tests/ltinstloc.test +++ b/tests/ltinstloc.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/ltlibobjs.test b/tests/ltlibobjs.test index e34e667e5..9a3d830b5 100755 --- a/tests/ltlibobjs.test +++ b/tests/ltlibobjs.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([LTLIBOBJS]) AC_PROG_LIBTOOL diff --git a/tests/ltlibsrc.test b/tests/ltlibsrc.test index 2c9911d0f..78ac8e2f7 100755 --- a/tests/ltlibsrc.test +++ b/tests/ltlibsrc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ required='libtool gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/ltorder.test b/tests/ltorder.test index 0f6921136..c41134137 100755 --- a/tests/ltorder.test +++ b/tests/ltorder.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +19,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/lzip.test b/tests/lzip.test index fecbc83fa..481474343 100755 --- a/tests/lzip.test +++ b/tests/lzip.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=lzip . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([lzip], [1.0]) AM_INIT_AUTOMAKE([no-dist-gzip dist-lzip]) diff --git a/tests/lzma.test b/tests/lzma.test index 11bb93df3..97908d2fd 100755 --- a/tests/lzma.test +++ b/tests/lzma.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2011 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 @@ -19,8 +19,6 @@ required=lzma . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([lzma], [1.0]) AM_INIT_AUTOMAKE([no-dist-gzip dist-lzma]) diff --git a/tests/maintclean.test b/tests/maintclean.test index e4f09fd5c..471c8cea4 100755 --- a/tests/maintclean.test +++ b/tests/maintclean.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([bar]) AC_OUTPUT diff --git a/tests/make.test b/tests/make.test index f866b3132..eb4656a71 100755 --- a/tests/make.test +++ b/tests/make.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAKE_INCLUDE AC_OUTPUT diff --git a/tests/makej.test b/tests/makej.test index d85be0f0d..e54c14426 100755 --- a/tests/makej.test +++ b/tests/makej.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -24,8 +24,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >configure.in <<END m4_include([version.m4]) AC_INIT([$me], [THE_VERSION]) diff --git a/tests/makej2.test b/tests/makej2.test index e7029990b..2adc75aba 100755 --- a/tests/makej2.test +++ b/tests/makej2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_OUTPUT END diff --git a/tests/maken.test b/tests/maken.test index 8c78b97b3..aa6d598ee 100755 --- a/tests/maken.test +++ b/tests/maken.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - mkdir sub cat >> configure.in << 'END' diff --git a/tests/maken2.test b/tests/maken2.test index 97bf7982f..eb330a23f 100755 --- a/tests/maken2.test +++ b/tests/maken2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -22,8 +22,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - mkdir sub cat >> configure.in << 'END' diff --git a/tests/maken3.test b/tests/maken3.test index a3768bd65..5a77f1a50 100755 --- a/tests/maken3.test +++ b/tests/maken3.test @@ -24,8 +24,6 @@ . ./defs || Exit 1 -set -e - mkdir sub sub2 cat >> configure.in << 'END' diff --git a/tests/maken4.test b/tests/maken4.test index 09aba676b..5c2194371 100755 --- a/tests/maken4.test +++ b/tests/maken4.test @@ -26,8 +26,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - mkdir sub sub2 cat >> configure.in << 'END' diff --git a/tests/makevars.test b/tests/makevars.test index 31fdd56d0..e4943733a 100755 --- a/tests/makevars.test +++ b/tests/makevars.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # Find the macros wanted by Automake. $ACLOCAL diff --git a/tests/man.test b/tests/man.test index 1b287a84f..3e326ead2 100755 --- a/tests/man.test +++ b/tests/man.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = foo.1 nodist_man1_MANS = bar.man diff --git a/tests/man2.test b/tests/man2.test index cafef0236..a4d181569 100755 --- a/tests/man2.test +++ b/tests/man2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_OUTPUT END diff --git a/tests/man3.test b/tests/man3.test index 8b9e3eeaa..ff49d87fb 100755 --- a/tests/man3.test +++ b/tests/man3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = foo.1 installcheck-local: diff --git a/tests/man4.test b/tests/man4.test index 3eff46816..74acb3366 100755 --- a/tests/man4.test +++ b/tests/man4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -33,8 +33,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = $(srcdir)/foo.1 bar.1 dist_bin_SCRIPTS = foo bar diff --git a/tests/man5.test b/tests/man5.test index f21a09942..28bcff064 100755 --- a/tests/man5.test +++ b/tests/man5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_OUTPUT END diff --git a/tests/man6.test b/tests/man6.test index 94f59ad75..42a0f9af1 100755 --- a/tests/man6.test +++ b/tests/man6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=help2man . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = $(srcdir)/foobar.1 bazquux.1 zardoz.1 dist_bin_SCRIPTS = foobar bazquux zardoz diff --git a/tests/man7.test b/tests/man7.test index 748b8f847..9f4f9ad1a 100755 --- a/tests/man7.test +++ b/tests/man7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = $(srcdir)/foo.1 bar.1 $(srcdir)/foo.1 bar.1: diff --git a/tests/man8.test b/tests/man8.test index 377eeff28..91d6cacc8 100755 --- a/tests/man8.test +++ b/tests/man8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' dist_man_MANS = foo.1 foo.1: diff --git a/tests/mclean.test b/tests/mclean.test index 331b3d74e..07ae0fef3 100755 --- a/tests/mclean.test +++ b/tests/mclean.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' MAINTAINERCLEANFILES = foo END diff --git a/tests/mdate.test b/tests/mdate.test index 0dfba07e3..5d7810e52 100755 --- a/tests/mdate.test +++ b/tests/mdate.test @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END diff --git a/tests/mdate2.test b/tests/mdate2.test index ae2524c01..c577031cb 100755 --- a/tests/mdate2.test +++ b/tests/mdate2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END diff --git a/tests/mdate3.test b/tests/mdate3.test index b487359d8..970bd5460 100755 --- a/tests/mdate3.test +++ b/tests/mdate3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([foo]) diff --git a/tests/mdate4.test b/tests/mdate4.test index c9ef89967..c1052a3d2 100755 --- a/tests/mdate4.test +++ b/tests/mdate4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) END diff --git a/tests/mdate5.test b/tests/mdate5.test index c9140b660..dc6ede125 100755 --- a/tests/mdate5.test +++ b/tests/mdate5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2004, 2007 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2004, 2007, 2011 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 @@ -18,8 +18,6 @@ # Test to make sure mdate-sh works correctly. . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/mdate6.test b/tests/mdate6.test index cb2456c0b..17672ee7c 100755 --- a/tests/mdate6.test +++ b/tests/mdate6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - a= file='file name $a' ( : > "$file" ) || Exit 77 diff --git a/tests/missing.test b/tests/missing.test index eaf6f54c3..2e6d8d382 100755 --- a/tests/missing.test +++ b/tests/missing.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, -# Inc. +# Copyright (C) 2003, 2004, 2006, 2007, 2008, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/missing2.test b/tests/missing2.test index 2629198dd..88e6b27a6 100755 --- a/tests/missing2.test +++ b/tests/missing2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2006, 2007, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' m4_include([v.m4]) AC_OUTPUT diff --git a/tests/missing3.test b/tests/missing3.test index 54044f561..21b5e4fa7 100755 --- a/tests/missing3.test +++ b/tests/missing3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # b7cb8259 assumed not to exist. ./missing b7cb8259 --version 2>stderr && { cat stderr >&2; Exit 1; } diff --git a/tests/missing4.test b/tests/missing4.test index 13a4c224e..767794a9d 100755 --- a/tests/missing4.test +++ b/tests/missing4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2006, 2007, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2007, 2008, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >>configure.in touch Makefile.am diff --git a/tests/missing5.test b/tests/missing5.test index a96e14eea..010b344d2 100755 --- a/tests/missing5.test +++ b/tests/missing5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # these programs may be invoked by `missing' needed_tools='chmod find sed test touch' needed_tools_csep=`echo $needed_tools | sed 's/ /, /g'` diff --git a/tests/missing6.test b/tests/missing6.test index e543697c9..2e257f157 100755 --- a/tests/missing6.test +++ b/tests/missing6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - { echo 'm4_define([AC_AUTOCONF_VERSION], [9999a])' echo 'dnl!! m4_define([a], [oops])' diff --git a/tests/mkinst2.test b/tests/mkinst2.test index 359f56275..3058803ee 100755 --- a/tests/mkinst2.test +++ b/tests/mkinst2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2007, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/mkinst3.test b/tests/mkinst3.test index da999d38b..8d9efe708 100755 --- a/tests/mkinst3.test +++ b/tests/mkinst3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # Make sure the directory we will create can be created... mkdir '~a b' || Exit 77 mkdir '~a b/-x y' || Exit 77 diff --git a/tests/mkinstall.test b/tests/mkinstall.test index 8b426e840..1f1bac863 100755 --- a/tests/mkinstall.test +++ b/tests/mkinstall.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' pkgdata_DATA = END diff --git a/tests/mmode.test b/tests/mmode.test index c5a16c980..1dd64e783 100755 --- a/tests/mmode.test +++ b/tests/mmode.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE AC_OUTPUT diff --git a/tests/mmodely.test b/tests/mmodely.test index fc94d3783..03c5d0f9a 100755 --- a/tests/mmodely.test +++ b/tests/mmodely.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2004, 2006, 2007, 2009, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2004, 2006, 2007, 2009, 2010, 2011 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 @@ -22,8 +22,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE AC_PROG_CC diff --git a/tests/multlib.test b/tests/multlib.test index c4b00242b..e2ab6f337 100755 --- a/tests/multlib.test +++ b/tests/multlib.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2007, 2010, 2011 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 @@ -20,8 +21,6 @@ required='gcc GNUmake' . ./defs || Exit 1 -set -e - cat >configure.in <<'END' AC_INIT([multlib], [1.0]) AC_CONFIG_SRCDIR(libfoo/foo.c) diff --git a/tests/no-outdir-option.test b/tests/no-outdir-option.test index 827e31843..748a2338b 100755 --- a/tests/no-outdir-option.test +++ b/tests/no-outdir-option.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - AUTOMAKE_fails -Wno-error --output-dir=foo $EGREP '(invalid|unrecognized) option.*--output-dir' stderr diff --git a/tests/nobase-libtool.test b/tests/nobase-libtool.test index 12b055ec9..15d1b4994 100755 --- a/tests/nobase-libtool.test +++ b/tests/nobase-libtool.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software -# Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2011 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 @@ -22,8 +22,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/nobase-python.test b/tests/nobase-python.test index db5b83076..5ff170e50 100755 --- a/tests/nobase-python.test +++ b/tests/nobase-python.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_PATH_PYTHON AC_OUTPUT diff --git a/tests/nobase.test b/tests/nobase.test index 8b0dc6e90..2fa9a6059 100755 --- a/tests/nobase.test +++ b/tests/nobase.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free -# Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2011 +# 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 @@ -20,8 +20,6 @@ required='gcc' . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/nodef.test b/tests/nodef.test index 1a58bb7b4..cfcea3971 100755 --- a/tests/nodef.test +++ b/tests/nodef.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # ------------------------------------------------------------------- # Do not upgrade this file to use the modern AC_INIT/AM_INIT_AUTOMAKE # forms. The day these obsolete AC_INIT and AM_INIT_AUTOMAKE forms diff --git a/tests/nodef2.test b/tests/nodef2.test index 5a6c0ee88..337c65f3e 100755 --- a/tests/nodef2.test +++ b/tests/nodef2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - # First, check that PACKAGE and VERSION are output by default. cat > configure.in << 'END' diff --git a/tests/nodep.test b/tests/nodep.test index 650bbd006..0d140eb44 100755 --- a/tests/nodep.test +++ b/tests/nodep.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = no-dependencies bin_PROGRAMS = zardoz diff --git a/tests/nodep2.test b/tests/nodep2.test index 53bcaad6e..840858e3c 100755 --- a/tests/nodep2.test +++ b/tests/nodep2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = foo foo_SOURCES = a.c b.cpp c.m d.S e.java f.upc diff --git a/tests/nodepcomp.test b/tests/nodepcomp.test index 735c36349..7042ae939 100755 --- a/tests/nodepcomp.test +++ b/tests/nodepcomp.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - rm -f depcomp : > Makefile.am diff --git a/tests/nodist.test b/tests/nodist.test index d2c2cafe4..e300b9103 100755 --- a/tests/nodist.test +++ b/tests/nodist.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/nodist2.test b/tests/nodist2.test index 4c875b14a..c7a85630f 100755 --- a/tests/nodist2.test +++ b/tests/nodist2.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_OUTPUT EOF diff --git a/tests/nodist3.test b/tests/nodist3.test index ec21eaf94..31f749023 100755 --- a/tests/nodist3.test +++ b/tests/nodist3.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/nogzip.test b/tests/nogzip.test index 77adcdcde..bf49a5374 100755 --- a/tests/nogzip.test +++ b/tests/nogzip.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ required=bzip2 . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([nogzip], [1.0]) AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2]) diff --git a/tests/nogzip2.test b/tests/nogzip2.test index f6e01ab2c..1f8ed8f00 100755 --- a/tests/nogzip2.test +++ b/tests/nogzip2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([nogzip], [1.0]) AM_INIT_AUTOMAKE([no-dist-gzip]) diff --git a/tests/noinst.test b/tests/noinst.test index 075e05eab..ac4ff66e7 100755 --- a/tests/noinst.test +++ b/tests/noinst.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' all-local: exit 1 diff --git a/tests/noinstdir.test b/tests/noinstdir.test index b91ac326e..92f59ffd7 100755 --- a/tests/noinstdir.test +++ b/tests/noinstdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_SCRIPTS = foo.sh noinst_DATA = foo.xpm diff --git a/tests/nolink.test b/tests/nolink.test index 5e42076dc..ca67339c9 100755 --- a/tests/nolink.test +++ b/tests/nolink.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = no-exeext diff --git a/tests/nostdinc.test b/tests/nostdinc.test index 43535ef77..a693003cc 100755 --- a/tests/nostdinc.test +++ b/tests/nostdinc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/notrans.test b/tests/notrans.test index d3ee2b2b1..f791384d6 100755 --- a/tests/notrans.test +++ b/tests/notrans.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_OUTPUT END diff --git a/tests/number.test b/tests/number.test index b764519bf..7a0d1ee98 100755 --- a/tests/number.test +++ b/tests/number.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/objc.test b/tests/objc.test index 0c55f7a04..0ea5b407c 100755 --- a/tests/objc.test +++ b/tests/objc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2006, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_OBJC END diff --git a/tests/objc2.test b/tests/objc2.test index 9931ef73f..3080d5c6d 100755 --- a/tests/objc2.test +++ b/tests/objc2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >>configure.in cat >Makefile.am <<'END' diff --git a/tests/obsolete.test b/tests/obsolete.test index 2c43e7a96..943df6f87 100755 --- a/tests/obsolete.test +++ b/tests/obsolete.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2007, 2008, 2010 Free Software +# Copyright (C) 1996, 2001, 2002, 2007, 2008, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -23,8 +23,6 @@ set x ${AUTOUPDATE-autoupdate} required=$2 . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT END diff --git a/tests/oldvars.test b/tests/oldvars.test index 7a2bb71bf..242056e4d 100755 --- a/tests/oldvars.test +++ b/tests/oldvars.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<\EOF DATA = HEADERS = diff --git a/tests/order.test b/tests/order.test index 0f39b796d..b1030fa7a 100755 --- a/tests/order.test +++ b/tests/order.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' jm_TEST FOO diff --git a/tests/output-order.test b/tests/output-order.test index cb9ffff93..259b34de2 100755 --- a/tests/output-order.test +++ b/tests/output-order.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_OUTPUT END diff --git a/tests/output.test b/tests/output.test index ad29300a0..260dfcb9a 100755 --- a/tests/output.test +++ b/tests/output.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output10.test b/tests/output10.test index a973559ae..b20cae2bc 100755 --- a/tests/output10.test +++ b/tests/output10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << END AC_SUBST([FOO], [top]) AC_SUBST([BAR], [bot]) diff --git a/tests/output11.test b/tests/output11.test index 9d5328b36..e8e2c8012 100755 --- a/tests/output11.test +++ b/tests/output11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << \END AC_SUBST([FOO], [foo]) file1=this.in diff --git a/tests/output12.test b/tests/output12.test index 2f8027c25..4297373c0 100755 --- a/tests/output12.test +++ b/tests/output12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005 Free Software Foundation, Inc. +# Copyright (C) 2005, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << \END AC_SUBST([FOO], [foo]) AC_SUBST([file1], [this.in]) diff --git a/tests/output13.test b/tests/output13.test index c862f07a7..810c280ac 100755 --- a/tests/output13.test +++ b/tests/output13.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << \END AC_SUBST([FOO], [foo]) if $create; then diff --git a/tests/output2.test b/tests/output2.test index df1c4c3eb..28850a4bf 100755 --- a/tests/output2.test +++ b/tests/output2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output3.test b/tests/output3.test index 3c8e79b74..2626113bd 100755 --- a/tests/output3.test +++ b/tests/output3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output4.test b/tests/output4.test index 4ea75b5c1..41fabf9dd 100755 --- a/tests/output4.test +++ b/tests/output4.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output5.test b/tests/output5.test index 4323f6233..c46ccf241 100755 --- a/tests/output5.test +++ b/tests/output5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004 Free Software -# Foundation, Inc. +# Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([foo], [bar], [baz]) AM_INIT_AUTOMAKE diff --git a/tests/output6.test b/tests/output6.test index 88daa7412..483de80e6 100755 --- a/tests/output6.test +++ b/tests/output6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output7.test b/tests/output7.test index 878c0915e..a49632f73 100755 --- a/tests/output7.test +++ b/tests/output7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/output8.test b/tests/output8.test index 1c11a16a1..4e610a930 100755 --- a/tests/output8.test +++ b/tests/output8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mkdir testdir cd testdir diff --git a/tests/output9.test b/tests/output9.test index d4cf15a0c..98572bede 100755 --- a/tests/output9.test +++ b/tests/output9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << END AC_CONFIG_FILES([a/mid.in:a/input.in.in]) AC_CONFIG_FILES([b/out:a/mid.in]) diff --git a/tests/override-conditional-1.test b/tests/override-conditional-1.test index fe0bbba6a..b7f1556cb 100755 --- a/tests/override-conditional-1.test +++ b/tests/override-conditional-1.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([COND], [test x"$cond" = x"yes"]) AC_OUTPUT diff --git a/tests/override-conditional-2.test b/tests/override-conditional-2.test index 132b84129..0fc88c282 100755 --- a/tests/override-conditional-2.test +++ b/tests/override-conditional-2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([COND], [:]) END diff --git a/tests/override-html.test b/tests/override-html.test index baece427b..c2c5ec672 100755 --- a/tests/override-html.test +++ b/tests/override-html.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' html: : diff --git a/tests/override-suggest-local.test b/tests/override-suggest-local.test index 851393a30..6639ee5ba 100755 --- a/tests/override-suggest-local.test +++ b/tests/override-suggest-local.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' install: : diff --git a/tests/parallel-am.test b/tests/parallel-am.test index c46377bee..0182b44e1 100755 --- a/tests/parallel-am.test +++ b/tests/parallel-am.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -38,8 +38,6 @@ required=perl-threads . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([parallel-am], [1.0]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/tests/parallel-am2.test b/tests/parallel-am2.test index d92974071..52dfde8fc 100755 --- a/tests/parallel-am2.test +++ b/tests/parallel-am2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -23,8 +23,6 @@ required=perl-threads . ./defs || Exit 1 -set -e - mkdir sub cat > Makefile.am << 'END' diff --git a/tests/parallel-am3.test b/tests/parallel-am3.test index 104376ae1..932dea40f 100755 --- a/tests/parallel-am3.test +++ b/tests/parallel-am3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -24,8 +24,6 @@ required=perl-threads . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([parallel-am], [1.0]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/tests/parallel-tests.test b/tests/parallel-tests.test index 29111c232..9a9c70392 100755 --- a/tests/parallel-tests.test +++ b/tests/parallel-tests.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -27,8 +27,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parallel-tests10.test b/tests/parallel-tests10.test index 5cd33108e..cdf148d35 100755 --- a/tests/parallel-tests10.test +++ b/tests/parallel-tests10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parallel-tests2.test b/tests/parallel-tests2.test index 9cfe14fc1..8fe5d3027 100755 --- a/tests/parallel-tests2.test +++ b/tests/parallel-tests2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -22,8 +22,6 @@ parallel_tests=yes required=rst2html . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parallel-tests3.test b/tests/parallel-tests3.test index 210be57ee..9f0ce4289 100755 --- a/tests/parallel-tests3.test +++ b/tests/parallel-tests3.test @@ -21,8 +21,6 @@ parallel_tests=yes required=GNUmake . ./defs || Exit 1 -set -e - # This test does not work well if $MAKE contains -j. case $MAKE in *\ -j*) Exit 77 ;; diff --git a/tests/parallel-tests4.test b/tests/parallel-tests4.test index efe7e8d10..a24bd5135 100755 --- a/tests/parallel-tests4.test +++ b/tests/parallel-tests4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/parallel-tests5.test b/tests/parallel-tests5.test index c4ff5b905..7d7184166 100755 --- a/tests/parallel-tests5.test +++ b/tests/parallel-tests5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -24,8 +24,6 @@ parallel_tests=yes required=GNUmake . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/parallel-tests6.test b/tests/parallel-tests6.test index 44caf0c8d..599225026 100755 --- a/tests/parallel-tests6.test +++ b/tests/parallel-tests6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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,8 +21,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parallel-tests7.test b/tests/parallel-tests7.test index d01ada103..c29d32c21 100755 --- a/tests/parallel-tests7.test +++ b/tests/parallel-tests7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/parallel-tests8.test b/tests/parallel-tests8.test index 43e67df9a..302125f1b 100755 --- a/tests/parallel-tests8.test +++ b/tests/parallel-tests8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -27,8 +27,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parallel-tests9.test b/tests/parallel-tests9.test index 337328fd3..e6191d922 100755 --- a/tests/parallel-tests9.test +++ b/tests/parallel-tests9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ parallel_tests=yes . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/parse.test b/tests/parse.test index 6ae93a2a2..8a97cd14e 100755 --- a/tests/parse.test +++ b/tests/parse.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/percent.test b/tests/percent.test index dfb48ae98..492d0e000 100755 --- a/tests/percent.test +++ b/tests/percent.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC EOF diff --git a/tests/percent2.test b/tests/percent2.test index 09e4f8406..33cbe9c6d 100755 --- a/tests/percent2.test +++ b/tests/percent2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >>Makefile.am << 'EOF' ${ARCH}/%.$(OBJEXT): %.S test -d ${ARCH} || mkdir ${ARCH} diff --git a/tests/phony.test b/tests/phony.test index 9c9f3d372..2eba53519 100755 --- a/tests/phony.test +++ b/tests/phony.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am << 'EOF' .PHONY: foo .PHONY: bar diff --git a/tests/pluseq.test b/tests/pluseq.test index 5cfa873d2..bd6da5b1d 100755 --- a/tests/pluseq.test +++ b/tests/pluseq.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' data_DATA = zar data_DATA += doz diff --git a/tests/pluseq10.test b/tests/pluseq10.test index 92734155d..2b0079bd7 100755 --- a/tests/pluseq10.test +++ b/tests/pluseq10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'END' AM_CONDITIONAL([A], [true]) AM_CONDITIONAL([B], [false]) diff --git a/tests/pluseq11.test b/tests/pluseq11.test index 12ec4d77f..d619d3d38 100755 --- a/tests/pluseq11.test +++ b/tests/pluseq11.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_OUTPUT END diff --git a/tests/pluseq2.test b/tests/pluseq2.test index f9db345a0..14d6e7ffc 100755 --- a/tests/pluseq2.test +++ b/tests/pluseq2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([CHECK], [true]) END diff --git a/tests/pluseq3.test b/tests/pluseq3.test index 755002c4d..dea002399 100755 --- a/tests/pluseq3.test +++ b/tests/pluseq3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 1999, 2001, 2002, 2004, 2010 Free Software +# Copyright (C) 1998, 1999, 2001, 2002, 2004, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([CHECK], [true]) END diff --git a/tests/pluseq4.test b/tests/pluseq4.test index 744b4899b..831a3a91c 100755 --- a/tests/pluseq4.test +++ b/tests/pluseq4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/pluseq5.test b/tests/pluseq5.test index 88b2cb7dd..ea3c360fe 100755 --- a/tests/pluseq5.test +++ b/tests/pluseq5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONDITIONAL([CHECK], [true]) END diff --git a/tests/pluseq6.test b/tests/pluseq6.test index af0523900..68710cf0b 100755 --- a/tests/pluseq6.test +++ b/tests/pluseq6.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([ZZZ]) END diff --git a/tests/pluseq7.test b/tests/pluseq7.test index 071646208..3322a549e 100755 --- a/tests/pluseq7.test +++ b/tests/pluseq7.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/pluseq8.test b/tests/pluseq8.test index 901f8b641..52e9854d9 100755 --- a/tests/pluseq8.test +++ b/tests/pluseq8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2004, 2006, 2010 Free Software +# Copyright (C) 1999, 2001, 2002, 2004, 2006, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' VAR = \ one \ diff --git a/tests/pluseq9.test b/tests/pluseq9.test index 7d65bea3e..7f7265429 100755 --- a/tests/pluseq9.test +++ b/tests/pluseq9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'END' AM_CONDITIONAL([COND1], [true]) AM_CONDITIONAL([COND2], [true]) diff --git a/tests/posixsubst-data.test b/tests/posixsubst-data.test index 210279fce..49547e148 100755 --- a/tests/posixsubst-data.test +++ b/tests/posixsubst-data.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/posixsubst-extradist.test b/tests/posixsubst-extradist.test index c9a20bf66..36f0a3186 100755 --- a/tests/posixsubst-extradist.test +++ b/tests/posixsubst-extradist.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/posixsubst-ldadd.test b/tests/posixsubst-ldadd.test index 6eb29f93b..a418fc26e 100755 --- a/tests/posixsubst-ldadd.test +++ b/tests/posixsubst-ldadd.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/posixsubst-libraries.test b/tests/posixsubst-libraries.test index 90cc2e5a5..418d24175 100755 --- a/tests/posixsubst-libraries.test +++ b/tests/posixsubst-libraries.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/posixsubst-ltlibraries.test b/tests/posixsubst-ltlibraries.test index 93a1d5736..e95023c94 100755 --- a/tests/posixsubst-ltlibraries.test +++ b/tests/posixsubst-ltlibraries.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ required='libtool libtoolize' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/posixsubst-programs.test b/tests/posixsubst-programs.test index 69252dd13..947cf79bb 100755 --- a/tests/posixsubst-programs.test +++ b/tests/posixsubst-programs.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/posixsubst-scripts.test b/tests/posixsubst-scripts.test index 918bced79..eef7856ae 100755 --- a/tests/posixsubst-scripts.test +++ b/tests/posixsubst-scripts.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/posixsubst-sources.test b/tests/posixsubst-sources.test index 14d438d8d..aef4c2f0b 100755 --- a/tests/posixsubst-sources.test +++ b/tests/posixsubst-sources.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/posixsubst-tests.test b/tests/posixsubst-tests.test index 3fca8f4c2..26ae69fa5 100755 --- a/tests/posixsubst-tests.test +++ b/tests/posixsubst-tests.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/postproc.test b/tests/postproc.test index 44570fe9d..0a8b1f388 100755 --- a/tests/postproc.test +++ b/tests/postproc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2009, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/ppf77.test b/tests/ppf77.test index aaeedcbcf..301ba4ccd 100755 --- a/tests/ppf77.test +++ b/tests/ppf77.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_F77 END diff --git a/tests/pr2.test b/tests/pr2.test index ceb272906..cbddea023 100755 --- a/tests/pr2.test +++ b/tests/pr2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2006, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2006, 2010, 2011 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 @@ -30,8 +30,6 @@ . ./defs || Exit 1 -set -e - # Please keep this underquoted and old-style. cat > configure.in << 'END' AC_INIT diff --git a/tests/pr204.test b/tests/pr204.test index 22a1e54f5..0e69193d4 100755 --- a/tests/pr204.test +++ b/tests/pr204.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2010, 2011 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 @@ -20,8 +20,6 @@ required='bison gcc' . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AM_MAINTAINER_MODE AC_PROG_CC diff --git a/tests/pr211.test b/tests/pr211.test index 6778f7a06..5d4f0c1f5 100755 --- a/tests/pr211.test +++ b/tests/pr211.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -30,8 +31,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/pr220.test b/tests/pr220.test index 95212ab0e..972f5aa3b 100755 --- a/tests/pr220.test +++ b/tests/pr220.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2008, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2004, 2008, 2010, 2011 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 @@ -26,8 +26,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > main.c <<'EOF' int main() { return 0; } EOF diff --git a/tests/pr224.test b/tests/pr224.test index 00a7aad6e..d8b7468e7 100755 --- a/tests/pr224.test +++ b/tests/pr224.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -26,8 +26,6 @@ required=gcc . ./defs || Exit 1 -set -e - mkdir foo cat >foo/main.c <<'EOF' diff --git a/tests/pr229.test b/tests/pr229.test index 0d3f15383..09130ccbe 100755 --- a/tests/pr229.test +++ b/tests/pr229.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<EOF AC_CYGWIN EOF diff --git a/tests/pr243.test b/tests/pr243.test index 58fb2a824..30b0d70a8 100755 --- a/tests/pr243.test +++ b/tests/pr243.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2009, 2010, 2011 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 @@ -28,8 +29,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/pr266.test b/tests/pr266.test index 2bace6f92..c3fd5598e 100755 --- a/tests/pr266.test +++ b/tests/pr266.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2009, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/pr279-2.test b/tests/pr279-2.test index f4e6fb2d8..6142930ac 100755 --- a/tests/pr279-2.test +++ b/tests/pr279-2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -26,8 +26,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([FOOTEST], [false]) diff --git a/tests/pr279.test b/tests/pr279.test index d658668f7..5f3b0649f 100755 --- a/tests/pr279.test +++ b/tests/pr279.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -26,8 +26,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([FOOTEST], [false]) diff --git a/tests/pr287.test b/tests/pr287.test index 3a6f902f9..33587022b 100755 --- a/tests/pr287.test +++ b/tests/pr287.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/pr300-lib.test b/tests/pr300-lib.test index ee46b4b44..530f6c45a 100755 --- a/tests/pr300-lib.test +++ b/tests/pr300-lib.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2010, 2011 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_RANLIB AC_PROG_CC diff --git a/tests/pr300-ltlib.test b/tests/pr300-ltlib.test index c47f32eba..1b3613682 100755 --- a/tests/pr300-ltlib.test +++ b/tests/pr300-ltlib.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2007, 2008, 2009, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2002, 2007, 2008, 2009, 2010, 2011 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,8 +21,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/pr300-prog.test b/tests/pr300-prog.test index 917a8a201..63eef4117 100755 --- a/tests/pr300-prog.test +++ b/tests/pr300-prog.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2007, 2010, 2011 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 @@ -20,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/pr307.test b/tests/pr307.test index 7676c4bc6..3db9f854c 100755 --- a/tests/pr307.test +++ b/tests/pr307.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2010, 2011 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 @@ -35,8 +35,6 @@ required='libtoolize gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/pr401.test b/tests/pr401.test index b68b5ed1b..fc3a72f65 100755 --- a/tests/pr401.test +++ b/tests/pr401.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2005, 2006, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2007, 2010, 2011 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 @@ -20,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - mkdir lib src cat >lib/feep.c <<'EOF' diff --git a/tests/pr401b.test b/tests/pr401b.test index 8e296ef73..8c7a7e1cf 100755 --- a/tests/pr401b.test +++ b/tests/pr401b.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2005, 2006, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2007, 2010, 2011 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 @@ -20,8 +21,6 @@ required='gcc libtoolize' . ./defs || Exit 1 -set -e - mkdir lib src cat >lib/feep.c <<'EOF' diff --git a/tests/pr401c.test b/tests/pr401c.test index 8682dc0e0..2b5bcf31b 100755 --- a/tests/pr401c.test +++ b/tests/pr401c.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2005, 2006, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2006, 2007, 2010, 2011 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 @@ -20,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - mkdir lib src ac_cv_func_alloca_works=no diff --git a/tests/pr72.test b/tests/pr72.test index ab911ad15..8c52d2d80 100755 --- a/tests/pr72.test +++ b/tests/pr72.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/pr87.test b/tests/pr87.test index 31e64829c..3c860bdcc 100755 --- a/tests/pr87.test +++ b/tests/pr87.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - subdirs="foo bar" for i in $subdirs; do diff --git a/tests/pr9.test b/tests/pr9.test index a2e71d729..4a9a47ee6 100755 --- a/tests/pr9.test +++ b/tests/pr9.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -25,8 +26,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([support]) diff --git a/tests/prefix.test b/tests/prefix.test index 8ba92ef6c..482e71712 100755 --- a/tests/prefix.test +++ b/tests/prefix.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/primary.test b/tests/primary.test index a866f8f7d..acf1c3adf 100755 --- a/tests/primary.test +++ b/tests/primary.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = @programs@ END diff --git a/tests/primary2.test b/tests/primary2.test index 2fb3a605c..63e946712 100755 --- a/tests/primary2.test +++ b/tests/primary2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010 Free Software +# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/primary3.test b/tests/primary3.test index afccd0cbc..4340b0842 100755 --- a/tests/primary3.test +++ b/tests/primary3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AC_OUTPUT diff --git a/tests/proginst.test b/tests/proginst.test index 31745b7e3..045ddbabe 100755 --- a/tests/proginst.test +++ b/tests/proginst.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 1998, 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_SCRIPTS = zardoz qbert brownie END diff --git a/tests/python.test b/tests/python.test index 8102ca002..11fb0c171 100755 --- a/tests/python.test +++ b/tests/python.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo 'AM_PATH_PYTHON' >> configure.in cat > Makefile.am << 'END' diff --git a/tests/python10.test b/tests/python10.test index ff0ee151a..bc291f20a 100755 --- a/tests/python10.test +++ b/tests/python10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2007 Free Software Foundation, Inc. +# Copyright (C) 2004, 2007, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_PATH_PYTHON AM_CONDITIONAL([ONE], [test "x$one" = x1]) diff --git a/tests/python11.test b/tests/python11.test index 9163aac8a..cb17f75a5 100755 --- a/tests/python11.test +++ b/tests/python11.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2004, 2006, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2006, 2008, 2010, 2011 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 @@ -19,8 +20,6 @@ # Python is not required for this test. . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' m4_define([_AM_PYTHON_INTERPRETER_LIST], [IShouldNotExist1 IShouldNotExist2]) AM_PATH_PYTHON diff --git a/tests/python12.test b/tests/python12.test index 2f52dfcaa..84d3cd325 100755 --- a/tests/python12.test +++ b/tests/python12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_PATH_PYTHON AC_OUTPUT diff --git a/tests/python2.test b/tests/python2.test index 3e14fa2b5..62c4a6960 100755 --- a/tests/python2.test +++ b/tests/python2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - echo 1. pythondir not defined diff --git a/tests/python3.test b/tests/python3.test index f01ad3108..e29067b17 100755 --- a/tests/python3.test +++ b/tests/python3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_PATH_PYTHON AC_OUTPUT diff --git a/tests/python4.test b/tests/python4.test index 11bb3ed84..084744be1 100755 --- a/tests/python4.test +++ b/tests/python4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008, 2011 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 @@ -19,8 +19,6 @@ # Python is not required for this test. . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_PATH_PYTHON AC_OUTPUT diff --git a/tests/python5.test b/tests/python5.test index 86f586341..eabd90090 100755 --- a/tests/python5.test +++ b/tests/python5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2008, 2011 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 @@ -20,8 +20,6 @@ # Python is not required for this test. . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF # Hopefully the Python team will never release such a version. AM_PATH_PYTHON(9999.9) diff --git a/tests/python6.test b/tests/python6.test index 86dcfbba7..ac842b30c 100755 --- a/tests/python6.test +++ b/tests/python6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ # Python is not required for this test. . ./defs || Exit 1 -set -e - cat >>configure.in <<\EOF AM_PATH_PYTHON(,, [echo "GREP ME$PYTHON" >&2]) AC_OUTPUT diff --git a/tests/python7.test b/tests/python7.test index 27b2e7966..1c7d48242 100755 --- a/tests/python7.test +++ b/tests/python7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ # Python is not required for this test. . ./defs || Exit 1 -set -e - cat >>configure.in <<\EOF # Hopefully the Python team will never release such a version. AM_PATH_PYTHON(9999.9,, [echo "GREP ME$PYTHON" >&2]) diff --git a/tests/python8.test b/tests/python8.test index 51d02ad9b..8ed3c3dfd 100755 --- a/tests/python8.test +++ b/tests/python8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_PATH_PYTHON(, [echo 'GREP ME' >&2]) AC_OUTPUT diff --git a/tests/python9.test b/tests/python9.test index 6a91e9fee..e58058cc9 100755 --- a/tests/python9.test +++ b/tests/python9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required=python . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AM_PATH_PYTHON(0.0, [echo 'GREP ME' >&2]) AC_OUTPUT diff --git a/tests/recurs.test b/tests/recurs.test index 4937f4fa6..d20482c21 100755 --- a/tests/recurs.test +++ b/tests/recurs.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL(ONE, true) diff --git a/tests/recurs2.test b/tests/recurs2.test index c025984f4..ef85475ff 100755 --- a/tests/recurs2.test +++ b/tests/recurs2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' man_MANS = chgrp.1 man_aux = $(man_MANS:.1=.x) diff --git a/tests/regex-obsolete.test b/tests/regex-obsolete.test index c28302527..572441316 100755 --- a/tests/regex-obsolete.test +++ b/tests/regex-obsolete.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_WITH_REGEX END diff --git a/tests/regex.test b/tests/regex.test index babd92a29..ff786914e 100755 --- a/tests/regex.test +++ b/tests/regex.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_WITH_REGEX END diff --git a/tests/remake.test b/tests/remake.test index 4d3036b1d..236649dcb 100755 --- a/tests/remake.test +++ b/tests/remake.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2000, 2001, 2002, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2000, 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/remake10a.test b/tests/remake10a.test index cda72b0e1..7da457cc4 100755 --- a/tests/remake10a.test +++ b/tests/remake10a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ magic3=%%MagicStringThree%% diff --git a/tests/remake10b.test b/tests/remake10b.test index 53a7d13b8..0672fc9a4 100755 --- a/tests/remake10b.test +++ b/tests/remake10b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ magic3=%%MagicStringThree%% diff --git a/tests/remake10c.test b/tests/remake10c.test index 96e2c0d44..9b9aca97d 100755 --- a/tests/remake10c.test +++ b/tests/remake10c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ magic3=%%MagicStringThree%% diff --git a/tests/remake11.test b/tests/remake11.test index 7eaad6c97..bfd682e99 100755 --- a/tests/remake11.test +++ b/tests/remake11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -22,8 +22,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - ocwd=`pwd` || Exit 1 magic1=::MagicStringOne:: diff --git a/tests/remake12.test b/tests/remake12.test index 63ea39d06..fe14885b7 100755 --- a/tests/remake12.test +++ b/tests/remake12.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ magic3=%%MagicStringThree%% diff --git a/tests/remake1a.test b/tests/remake1a.test index ec8c64146..fc5ba6d07 100755 --- a/tests/remake1a.test +++ b/tests/remake1a.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - fingerprint='=/FiNgErPrInT/=' cat > configure.in <<END diff --git a/tests/remake2.test b/tests/remake2.test index 452e951cb..486da34b1 100755 --- a/tests/remake2.test +++ b/tests/remake2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1997, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -21,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE diff --git a/tests/remake3.test b/tests/remake3.test index 708dca8fc..b32235b26 100755 --- a/tests/remake3.test +++ b/tests/remake3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/foo]) AC_OUTPUT diff --git a/tests/remake3a.test b/tests/remake3a.test index a58c46255..38a3f401f 100755 --- a/tests/remake3a.test +++ b/tests/remake3a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/foo]) AC_OUTPUT diff --git a/tests/remake4.test b/tests/remake4.test index 0621c90eb..c4c21adb6 100755 --- a/tests/remake4.test +++ b/tests/remake4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -27,8 +27,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' # Rebuild rule are ok until make dist, but not afterwards. if test ! -f rebuild_ok; then diff --git a/tests/remake5.test b/tests/remake5.test index 133f9a0c8..d3bfc1060 100755 --- a/tests/remake5.test +++ b/tests/remake5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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,8 +21,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_MAINTAINER_MODE m4_include([foo.m4]) diff --git a/tests/remake6.test b/tests/remake6.test index 885bcb40a..c7d01e10f 100755 --- a/tests/remake6.test +++ b/tests/remake6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/remake7.test b/tests/remake7.test index 66d4b9c59..39f7ca953 100755 --- a/tests/remake7.test +++ b/tests/remake7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/remake8a.test b/tests/remake8a.test index 9e66540f7..c625e32cd 100755 --- a/tests/remake8a.test +++ b/tests/remake8a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -24,8 +24,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - mv -f configure.in configure.stub cat > Makefile.am <<'END' diff --git a/tests/remake8b.test b/tests/remake8b.test index 3773aac1e..86f0f8e86 100755 --- a/tests/remake8b.test +++ b/tests/remake8b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -24,8 +24,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - mv -f configure.in configure.stub cat > Makefile.am <<'END' diff --git a/tests/remake9a.test b/tests/remake9a.test index 9cd2d9ffd..d46f31742 100755 --- a/tests/remake9a.test +++ b/tests/remake9a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ diff --git a/tests/remake9b.test b/tests/remake9b.test index 636cc5f02..680ce9abc 100755 --- a/tests/remake9b.test +++ b/tests/remake9b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ diff --git a/tests/remake9c.test b/tests/remake9c.test index 4514371d4..3328bebcf 100755 --- a/tests/remake9c.test +++ b/tests/remake9c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ diff --git a/tests/remake9d.test b/tests/remake9d.test index b83dd899d..ecb93d96a 100755 --- a/tests/remake9d.test +++ b/tests/remake9d.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - magic1=::MagicStringOne:: magic2=__MagicStringTwo__ diff --git a/tests/repeated-options.test b/tests/repeated-options.test index 84901f82c..4ad6be605 100755 --- a/tests/repeated-options.test +++ b/tests/repeated-options.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=bzip2 . ./defs || Exit 1 -set -e - cat >configure.in <<END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip no-dist-gzip dist-bzip2]) diff --git a/tests/req.test b/tests/req.test index 3d89cf9c7..ef250996a 100755 --- a/tests/req.test +++ b/tests/req.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in <<EOF AC_INIT AM_INIT_GUILE_MODULE diff --git a/tests/reqd.test b/tests/reqd.test index 58a8839b6..aa723cc29 100755 --- a/tests/reqd.test +++ b/tests/reqd.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<EOF AC_CONFIG_FILES([one/Makefile two/Makefile]) AC_OUTPUT diff --git a/tests/reqd2.test b/tests/reqd2.test index b47ef156d..dfb237133 100755 --- a/tests/reqd2.test +++ b/tests/reqd2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2011 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,8 +21,6 @@ required='libtoolize' . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([req2], [1.0]) AC_CONFIG_AUX_DIR([autoconf]) diff --git a/tests/rulepat.test b/tests/rulepat.test index 06b0c891e..3d939c904 100755 --- a/tests/rulepat.test +++ b/tests/rulepat.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' $(srcdir)/Makefile.am: END diff --git a/tests/sanity.test b/tests/sanity.test index ed7fe2809..7dd31eb1a 100755 --- a/tests/sanity.test +++ b/tests/sanity.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2008, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - mkdir 'unsafe$' cd 'unsafe$' diff --git a/tests/scripts.test b/tests/scripts.test index b9aed7f7d..7501fff68 100755 --- a/tests/scripts.test +++ b/tests/scripts.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_SCRIPTS = foo END diff --git a/tests/seenc.test b/tests/seenc.test index 3bfac3754..ea51cf5a1 100755 --- a/tests/seenc.test +++ b/tests/seenc.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1997, 1998, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' dnl AC_PROG_CC and AC_PROG_CXX missing on purpose AC_LIBOBJ([fsusage]) diff --git a/tests/silent-lex-gcc.test b/tests/silent-lex-gcc.test index 426dc504c..a55f35802 100755 --- a/tests/silent-lex-gcc.test +++ b/tests/silent-lex-gcc.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='flex gcc' . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent-lex-generic.test b/tests/silent-lex-generic.test index 66535e800..a61969827 100755 --- a/tests/silent-lex-generic.test +++ b/tests/silent-lex-generic.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='flex' . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent-many-gcc.test b/tests/silent-many-gcc.test index d770a467c..4bc7e8f4d 100755 --- a/tests/silent-many-gcc.test +++ b/tests/silent-many-gcc.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -24,8 +24,6 @@ required='gcc g++ gfortran flex bison' . ./defs || Exit 1 -set -e - # Avoids too much code duplication. do_and_check_silent_build () { diff --git a/tests/silent-many-generic.test b/tests/silent-many-generic.test index 223a97c64..5371dbb6b 100755 --- a/tests/silent-many-generic.test +++ b/tests/silent-many-generic.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -26,8 +26,6 @@ required='g++ gfortran flex bison' . ./defs || Exit 1 -set -e - # Avoids too much code duplication. do_and_check_silent_build () { diff --git a/tests/silent-yacc-gcc.test b/tests/silent-yacc-gcc.test index 33ae8aefc..009fe5eac 100755 --- a/tests/silent-yacc-gcc.test +++ b/tests/silent-yacc-gcc.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='gcc bison' . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent-yacc-generic.test b/tests/silent-yacc-generic.test index b7489dac9..8c7f70a87 100755 --- a/tests/silent-yacc-generic.test +++ b/tests/silent-yacc-generic.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='bison' . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent.test b/tests/silent.test index 97d881e76..f590347ef 100755 --- a/tests/silent.test +++ b/tests/silent.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent2.test b/tests/silent2.test index aed8546c1..fc976973c 100755 --- a/tests/silent2.test +++ b/tests/silent2.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -22,8 +22,6 @@ required=gcc . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent3.test b/tests/silent3.test index 17f195980..c0a9192cd 100755 --- a/tests/silent3.test +++ b/tests/silent3.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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,8 +21,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent4.test b/tests/silent4.test index 9c343c0d7..06a02ef94 100755 --- a/tests/silent4.test +++ b/tests/silent4.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -22,8 +22,6 @@ required="libtoolize gcc" . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silent6.test b/tests/silent6.test index acd9ceab0..5fa968ef1 100755 --- a/tests/silent6.test +++ b/tests/silent6.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_SILENT_RULES AC_OUTPUT diff --git a/tests/silent7.test b/tests/silent7.test index 5ae8ac022..39a267a19 100755 --- a/tests/silent7.test +++ b/tests/silent7.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_SILENT_RULES AC_OUTPUT diff --git a/tests/silent8.test b/tests/silent8.test index e9877a99e..7a34bdb64 100755 --- a/tests/silent8.test +++ b/tests/silent8.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -19,8 +19,6 @@ required='makeinfo-html tex texi2dvi-o dvips' . ./defs || Exit 1 -set -e - cat >>configure.in <<'EOF' AM_SILENT_RULES AC_OUTPUT diff --git a/tests/silent9.test b/tests/silent9.test index f0abb2902..cb62136e2 100755 --- a/tests/silent9.test +++ b/tests/silent9.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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,8 +21,6 @@ required="libtoolize" . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silentcxx.test b/tests/silentcxx.test index 40fc92e61..14d61ca58 100755 --- a/tests/silentcxx.test +++ b/tests/silentcxx.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required='g++' # FIXME: any decent C++ compiler should be OK . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silentf77.test b/tests/silentf77.test index cfdb1866a..75d5777b2 100755 --- a/tests/silentf77.test +++ b/tests/silentf77.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='gfortran' # FIXME: any working Fortran compiler should be OK! . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/silentf90.test b/tests/silentf90.test index 4fe1c3f14..c85f78f7c 100755 --- a/tests/silentf90.test +++ b/tests/silentf90.test @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='gfortran' # FIXME: any working Fortran compiler should be OK! . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'EOF' diff --git a/tests/sinclude.test b/tests/sinclude.test index 7aff5257e..9fbde28ef 100755 --- a/tests/sinclude.test +++ b/tests/sinclude.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003, 2005, 2010 Free Software +# Copyright (C) 1998, 2001, 2002, 2003, 2005, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - # Overwrite configure.in, because the default uses `sinclude' as package # name and this play havoc with Autoconf on some platforms (`sinclude' # is an m4 macro). diff --git a/tests/space.test b/tests/space.test index 05a90dd15..c0ed86910 100755 --- a/tests/space.test +++ b/tests/space.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/specflg.test b/tests/specflg.test index b9b2e103f..04c9153af 100755 --- a/tests/specflg.test +++ b/tests/specflg.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2004, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg10.test b/tests/specflg10.test index efe13f53f..45753b20f 100755 --- a/tests/specflg10.test +++ b/tests/specflg10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 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 @@ -19,8 +19,6 @@ required=g++ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_CXX diff --git a/tests/specflg2.test b/tests/specflg2.test index 0dc7fccc4..1c4d69a4d 100755 --- a/tests/specflg2.test +++ b/tests/specflg2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2004, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg3.test b/tests/specflg3.test index 40a383aa1..71cf8e52f 100755 --- a/tests/specflg3.test +++ b/tests/specflg3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg6.test b/tests/specflg6.test index 2300142e0..b02dbbaa3 100755 --- a/tests/specflg6.test +++ b/tests/specflg6.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -20,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg7.test b/tests/specflg7.test index 067a36d92..6d422bf9d 100755 --- a/tests/specflg7.test +++ b/tests/specflg7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2011 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 @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg8.test b/tests/specflg8.test index 1abcaa2b0..1defd0bef 100755 --- a/tests/specflg8.test +++ b/tests/specflg8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2011 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,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/specflg9.test b/tests/specflg9.test index 7f920462e..42f6fff35 100755 --- a/tests/specflg9.test +++ b/tests/specflg9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/spell.test b/tests/spell.test index d880a620f..0e06e7fbe 100755 --- a/tests/spell.test +++ b/tests/spell.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = zardoz foo zardoz_SOURCES = x.c diff --git a/tests/spell2.test b/tests/spell2.test index 54298f19d..900213613 100755 --- a/tests/spell2.test +++ b/tests/spell2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1997, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >> configure.in cat > Makefile.am << 'END' diff --git a/tests/spell3.test b/tests/spell3.test index ac5258218..a415cf2b9 100755 --- a/tests/spell3.test +++ b/tests/spell3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' TAGS_DEPENDENCIES = joe ## Required to avoid error. diff --git a/tests/spelling.test b/tests/spelling.test index 3b423cf17..7112f895e 100755 --- a/tests/spelling.test +++ b/tests/spelling.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'EOF' bni_PROGRAMS = zot EOF diff --git a/tests/spy.test b/tests/spy.test index c4993c688..79673d584 100755 --- a/tests/spy.test +++ b/tests/spy.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -69,8 +69,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile <<\EOF a :: b echo rule1 >> $@ diff --git a/tests/srcsub.test b/tests/srcsub.test index 2f3831296..0265af155 100755 --- a/tests/srcsub.test +++ b/tests/srcsub.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/srcsub2.test b/tests/srcsub2.test index 494d0f6cc..6eb3e54ac 100755 --- a/tests/srcsub2.test +++ b/tests/srcsub2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/stamph2.test b/tests/stamph2.test index aa0774358..3330f0fe5 100755 --- a/tests/stamph2.test +++ b/tests/stamph2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -17,8 +18,6 @@ # Make sure stamp-h* files are created where we expect . ./defs || Exit 1 -set -e - cat >> configure.in << END AM_CONFIG_HEADER([1.h 2.h:config.hin diff --git a/tests/stdinc.test b/tests/stdinc.test index ff914f3d3..2b619d854 100755 --- a/tests/stdinc.test +++ b/tests/stdinc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007 Free Software Foundation, Inc. +# Copyright (C) 2007, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_CONFIG_HEADERS([sub/config.h]) diff --git a/tests/stdlib.test b/tests/stdlib.test index 48f56fc25..edd68b020 100755 --- a/tests/stdlib.test +++ b/tests/stdlib.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2003, 2004, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/stdlib2.test b/tests/stdlib2.test index c5d543c23..b23e540b0 100755 --- a/tests/stdlib2.test +++ b/tests/stdlib2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2011 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 @@ -19,8 +19,6 @@ required=libtool . ./defs || Exit 1 -set -e - : > README : > NEWS : > AUTHORS diff --git a/tests/strip.test b/tests/strip.test index 12fe6b489..c63af43ea 100755 --- a/tests/strip.test +++ b/tests/strip.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2007, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/strip2.test b/tests/strip2.test index 5786ded89..01f66f186 100755 --- a/tests/strip2.test +++ b/tests/strip2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=strip . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/strip3.test b/tests/strip3.test index b15967334..5f6f163d3 100755 --- a/tests/strip3.test +++ b/tests/strip3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize strip' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/subcond.test b/tests/subcond.test index 0269cacec..dea041d96 100755 --- a/tests/subcond.test +++ b/tests/subcond.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2006, 2010, 2011 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 @@ -19,8 +20,6 @@ required=gettext . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_GNU_GETTEXT AM_CONDITIONAL(MAUDE, true) diff --git a/tests/subcond2.test b/tests/subcond2.test index 5086cd3a2..5cece059f 100755 --- a/tests/subcond2.test +++ b/tests/subcond2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_CONDITIONAL([COND_OPT], [test "$want_opt" = yes]) AC_CONFIG_FILES([src/Makefile opt/Makefile]) diff --git a/tests/subcond3.test b/tests/subcond3.test index 3506d0574..e0c9e133a 100755 --- a/tests/subcond3.test +++ b/tests/subcond3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' if test "$want_opt" = yes; then MAYBE_OPT=opt diff --git a/tests/subdir.test b/tests/subdir.test index edad4ca8e..a78d74d3b 100755 --- a/tests/subdir.test +++ b/tests/subdir.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - mkdir zot cat >> configure.in << 'END' diff --git a/tests/subdir10.test b/tests/subdir10.test index eabd1a9cd..b6daff55c 100755 --- a/tests/subdir10.test +++ b/tests/subdir10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2009, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - mkdir sub cat >> configure.in <<'END' diff --git a/tests/subdir2.test b/tests/subdir2.test index 941205420..354775847 100755 --- a/tests/subdir2.test +++ b/tests/subdir2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010 Free Software +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mkdir one mkdir one/two diff --git a/tests/subdir3.test b/tests/subdir3.test index 3da2cc8dd..bcf6acbe1 100755 --- a/tests/subdir3.test +++ b/tests/subdir3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = zardoz widdershins zardoz_SOURCES = y.c x/z.c diff --git a/tests/subdir4.test b/tests/subdir4.test index 7ea10f894..5dd516138 100755 --- a/tests/subdir4.test +++ b/tests/subdir4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - mkdir lib src cat >> configure.in << 'END' diff --git a/tests/subdir5.test b/tests/subdir5.test index 5633ac61b..2f4a211f2 100755 --- a/tests/subdir5.test +++ b/tests/subdir5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2009, 2010 Free Software +# Copyright (C) 2001, 2002, 2003, 2004, 2009, 2010, 2011 Free Software # Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -26,8 +26,6 @@ required='GNUmake gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subdir6.test b/tests/subdir6.test index f3a210793..80ae138da 100755 --- a/tests/subdir6.test +++ b/tests/subdir6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_CONFIG_HEADER([sub/config.h:sub/config.hin]) AC_OUTPUT diff --git a/tests/subdir7.test b/tests/subdir7.test index b50b2506e..28fe024c2 100755 --- a/tests/subdir7.test +++ b/tests/subdir7.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - mkdir obj cat >>configure.in << 'END' diff --git a/tests/subdir8.test b/tests/subdir8.test index 093fac8e8..01ff66250 100755 --- a/tests/subdir8.test +++ b/tests/subdir8.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2009, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2009, 2010, 2011 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 @@ -25,8 +26,6 @@ required='GNUmake gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subdir9.test b/tests/subdir9.test index c73ca1823..55e960800 100755 --- a/tests/subdir9.test +++ b/tests/subdir9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2004, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([src/subdir/Makefile src/subdir2/Makefile]) AC_OUTPUT diff --git a/tests/subdirbuiltsources.test b/tests/subdirbuiltsources.test index a84f28e9c..18cacd91d 100755 --- a/tests/subdirbuiltsources.test +++ b/tests/subdirbuiltsources.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - mkdir lib cat >> configure.in << 'END' diff --git a/tests/subobj.test b/tests/subobj.test index 39dc1b9ac..15104934b 100755 --- a/tests/subobj.test +++ b/tests/subobj.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj10.test b/tests/subobj10.test index dbddf29c1..227e34d00 100755 --- a/tests/subobj10.test +++ b/tests/subobj10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2006, 2010, 2011 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 @@ -19,8 +19,6 @@ required=gcc # avoid compiler errors. . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE([subdir-objects]) diff --git a/tests/subobj11a.test b/tests/subobj11a.test index 3bf301287..fc674b83c 100755 --- a/tests/subobj11a.test +++ b/tests/subobj11a.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -28,8 +28,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj11b.test b/tests/subobj11b.test index 1db5fab11..275b2caa4 100755 --- a/tests/subobj11b.test +++ b/tests/subobj11b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -28,8 +28,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj11c.test b/tests/subobj11c.test index 9262d155f..f78f7e96d 100755 --- a/tests/subobj11c.test +++ b/tests/subobj11c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj2.test b/tests/subobj2.test index 87a467140..6c41a20e2 100755 --- a/tests/subobj2.test +++ b/tests/subobj2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX END diff --git a/tests/subobj3.test b/tests/subobj3.test index 4fe685c3c..5ba999c1e 100755 --- a/tests/subobj3.test +++ b/tests/subobj3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2010 Free -# Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2010, 2011 +# 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) dnl Prevent automake from looking in .. and ../.. diff --git a/tests/subobj4.test b/tests/subobj4.test index ead2305c3..0a29ad023 100755 --- a/tests/subobj4.test +++ b/tests/subobj4.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj5.test b/tests/subobj5.test index c857e7393..1b05db39a 100755 --- a/tests/subobj5.test +++ b/tests/subobj5.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([generic/Makefile]) AC_PROG_CC diff --git a/tests/subobj6.test b/tests/subobj6.test index 228a1e974..48a0f2d87 100755 --- a/tests/subobj6.test +++ b/tests/subobj6.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2010, 2011 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,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_PROG_CC_C_O AC_OUTPUT diff --git a/tests/subobj7.test b/tests/subobj7.test index dd1a8febd..ff36d6c7e 100755 --- a/tests/subobj7.test +++ b/tests/subobj7.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/subobj8.test b/tests/subobj8.test index ae9b09bf9..b2fc0e5af 100755 --- a/tests/subobj8.test +++ b/tests/subobj8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([tools]) diff --git a/tests/subobj9.test b/tests/subobj9.test index 83f3a31ef..a910d22d5 100755 --- a/tests/subobj9.test +++ b/tests/subobj9.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2004, 2005, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004, 2005, 2010, 2011 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 @@ -19,8 +20,6 @@ required='libtoolize g++' . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AM_INIT_AUTOMAKE([subdir-objects]) diff --git a/tests/subobjname.test b/tests/subobjname.test index a8128bb0e..3f6f8a0a2 100755 --- a/tests/subobjname.test +++ b/tests/subobjname.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_CONDITIONAL([FOO1], [some test]) diff --git a/tests/subpkg.test b/tests/subpkg.test index 366293726..dee41f74f 100755 --- a/tests/subpkg.test +++ b/tests/subpkg.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2006, 2011 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 @@ -19,8 +20,6 @@ required='gcc bison' . ./defs || Exit 1 -set -e - mkdir m4 cat >m4/foo.m4 <<'EOF' diff --git a/tests/subpkg2.test b/tests/subpkg2.test index ebbc69bf1..67cc74aee 100755 --- a/tests/subpkg2.test +++ b/tests/subpkg2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mkdir m4 cat >m4/foo.m4 <<'EOF' diff --git a/tests/subpkg3.test b/tests/subpkg3.test index d57ee373c..937e51d3c 100755 --- a/tests/subpkg3.test +++ b/tests/subpkg3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<'END' SUBDIRS = subpkg EXTRA_DIST = subpkg/foobar diff --git a/tests/subpkg4.test b/tests/subpkg4.test index 1a6835a91..096b621d3 100755 --- a/tests/subpkg4.test +++ b/tests/subpkg4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006, 2009 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<'END' SUBDIRS = subpkg test-distdir-is-readable: diff --git a/tests/subst.test b/tests/subst.test index ebc73cadd..d1e832b8f 100755 --- a/tests/subst.test +++ b/tests/subst.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2007, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2001, 2002, 2007, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' dnl This test used to have the following lines, which cannot have dnl worked sensibly with Autoconf for years, however: diff --git a/tests/subst2.test b/tests/subst2.test index 2bbabdd3b..1dbb5110a 100755 --- a/tests/subst2.test +++ b/tests/subst2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2006 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2011 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 @@ -18,8 +18,6 @@ # line (when there are @substitutions@ inside). . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_SUBST([ABCDEFGHIJKLMNOPQRSTUVWX]) diff --git a/tests/subst3.test b/tests/subst3.test index 1bcb17060..c1b2dfc35 100755 --- a/tests/subst3.test +++ b/tests/subst3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software -# Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2011 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 @@ -20,8 +20,6 @@ required='gcc' . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/subst4.test b/tests/subst4.test index 5f3fdd6b2..ffa2b3ad9 100755 --- a/tests/subst4.test +++ b/tests/subst4.test @@ -1,6 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software -# Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'EOF' myrule="\ foo: bar diff --git a/tests/subst5.test b/tests/subst5.test index 7ffa1adeb..097dfe3a7 100755 --- a/tests/subst5.test +++ b/tests/subst5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_SUBST([substed1]) diff --git a/tests/substre2.test b/tests/substre2.test index ffe9e8b2f..c8ffd38c6 100755 --- a/tests/substre2.test +++ b/tests/substre2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/substref.test b/tests/substref.test index 3d4da0511..b45c8ab39 100755 --- a/tests/substref.test +++ b/tests/substref.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/substtarg.test b/tests/substtarg.test index d82895470..ad94e3e84 100755 --- a/tests/substtarg.test +++ b/tests/substtarg.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_SOURCE([fakelib.c]) AC_PROG_CC diff --git a/tests/suffix.test b/tests/suffix.test index 4e8136609..bb8b82ec6 100755 --- a/tests/suffix.test +++ b/tests/suffix.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -20,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_RANLIB diff --git a/tests/suffix10.test b/tests/suffix10.test index 0398d89d2..973f81825 100755 --- a/tests/suffix10.test +++ b/tests/suffix10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required='libtoolize bison' . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AC_PROG_YACC diff --git a/tests/suffix11.test b/tests/suffix11.test index ec4f5a197..eac61f459 100755 --- a/tests/suffix11.test +++ b/tests/suffix11.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AC_OUTPUT diff --git a/tests/suffix12.test b/tests/suffix12.test index 40f7b3fdf..6628d313d 100755 --- a/tests/suffix12.test +++ b/tests/suffix12.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AC_OUTPUT diff --git a/tests/suffix13.test b/tests/suffix13.test index d37643a75..c81692c99 100755 --- a/tests/suffix13.test +++ b/tests/suffix13.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006, 2009, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2002, 2003, 2006, 2009, 2010, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -25,8 +25,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<EOF AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/suffix2.test b/tests/suffix2.test index e2fd663e4..b1212a8ac 100755 --- a/tests/suffix2.test +++ b/tests/suffix2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1999, 2001, 2002, 2003, 2010, 2011 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 @@ -22,8 +22,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/suffix3.test b/tests/suffix3.test index 0ec457ef4..060cc4904 100755 --- a/tests/suffix3.test +++ b/tests/suffix3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1999, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AC_OUTPUT diff --git a/tests/suffix4.test b/tests/suffix4.test index b83c28097..4eae8e196 100755 --- a/tests/suffix4.test +++ b/tests/suffix4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' .k.o: echo $< > $@ diff --git a/tests/suffix5.test b/tests/suffix5.test index f661620d8..68de440b8 100755 --- a/tests/suffix5.test +++ b/tests/suffix5.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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,8 +21,6 @@ required=libtool . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_SUBST([LINK], [:]) AC_PROG_LIBTOOL diff --git a/tests/suffix6.test b/tests/suffix6.test index 7bfabb341..1d31a141c 100755 --- a/tests/suffix6.test +++ b/tests/suffix6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUFFIXES = a b .$(OBJEXT) c .o .obj bin_PROGRAMS = foo diff --git a/tests/suffix6b.test b/tests/suffix6b.test index a96c94178..c417df234 100755 --- a/tests/suffix6b.test +++ b/tests/suffix6b.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ required=GNUmake # other makes might not grok dot-less suffix rules . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' # $(LINK) is not defined automatically by Automake, since the *_SOURCES # variables don't contain any known extension (.c, .cc, .f ...), diff --git a/tests/suffix6c.test b/tests/suffix6c.test index e4b84cc85..149717dd8 100755 --- a/tests/suffix6c.test +++ b/tests/suffix6c.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' # $(LINK) is not defined automatically by Automake, since the *_SOURCES # variables don't contain any known extension (.c, .cc, .f ...), diff --git a/tests/suffix7.test b/tests/suffix7.test index eb6719533..8d291bb0a 100755 --- a/tests/suffix7.test +++ b/tests/suffix7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUFFIXES = .idl S.cpp C.h SUFFIXES += C.cpp S.h diff --git a/tests/suffix8.test b/tests/suffix8.test index 8760d7bd2..33cf331a4 100755 --- a/tests/suffix8.test +++ b/tests/suffix8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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,8 +21,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AM_PROG_LIBTOOL AC_OUTPUT diff --git a/tests/suffix9.test b/tests/suffix9.test index 815ec56ef..8cd973be1 100755 --- a/tests/suffix9.test +++ b/tests/suffix9.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in << 'END' AC_PROG_CC END diff --git a/tests/symlink.test b/tests/symlink.test index a9b12c531..a7e63fd9f 100755 --- a/tests/symlink.test +++ b/tests/symlink.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1996, 1999, 2001, 2002, 2003, 2004, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - rm -f install-sh rm -f mkinstalldirs diff --git a/tests/symlink2.test b/tests/symlink2.test index 97a3d2667..f2a9b4552 100755 --- a/tests/symlink2.test +++ b/tests/symlink2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - rm -f install-sh ln -s Zardoz install-sh || { echo "$me: cannot create broken symlinks" >&2 diff --git a/tests/syntax.test b/tests/syntax.test index 3b2a4e5fd..ba9249ea3 100755 --- a/tests/syntax.test +++ b/tests/syntax.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' foo = q \ diff --git a/tests/tags.test b/tests/tags.test index 1eaf56977..8d974db7f 100755 --- a/tests/tags.test +++ b/tests/tags.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' noinst_HEADERS = iguana.h END diff --git a/tests/tags2.test b/tests/tags2.test index f6e018c48..aba350bdc 100755 --- a/tests/tags2.test +++ b/tests/tags2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/tagsub.test b/tests/tagsub.test index bcf752d95..ca29406aa 100755 --- a/tests/tagsub.test +++ b/tests/tagsub.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2011 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,8 +21,6 @@ required=etags . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/tar.test b/tests/tar.test index dc5353c31..3dcf7ba90 100755 --- a/tests/tar.test +++ b/tests/tar.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([tar], [1.0]) AM_INIT_AUTOMAKE([tar-ustar]) diff --git a/tests/tar2.test b/tests/tar2.test index e62f0cce3..987ff403e 100755 --- a/tests/tar2.test +++ b/tests/tar2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([tar2], [1.0]) AM_INIT_AUTOMAKE([tar-pax]) diff --git a/tests/tar3.test b/tests/tar3.test index de6675422..a08bb7097 100755 --- a/tests/tar3.test +++ b/tests/tar3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([tar2], [1.0]) AM_INIT_AUTOMAKE([tar-pax tar-v7]) diff --git a/tests/target-cflags.test b/tests/target-cflags.test index f3ac9ccd2..352808efa 100755 --- a/tests/target-cflags.test +++ b/tests/target-cflags.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2000, 2001, 2002, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2000, 2001, 2002, 2004, 2010, 2011 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,8 +21,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/targetclash.test b/tests/targetclash.test index 87e37a8fb..22a1ad331 100755 --- a/tests/targetclash.test +++ b/tests/targetclash.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2010, 2011 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 @@ -19,8 +19,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC END diff --git a/tests/transform.test b/tests/transform.test index 02fdd61d0..04e8d53a5 100755 --- a/tests/transform.test +++ b/tests/transform.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2007, 2008 Free Software Foundation, -# Inc. +# Copyright (C) 2002, 2003, 2004, 2007, 2008, 2011 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 @@ -20,8 +20,6 @@ required=gcc . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/transform2.test b/tests/transform2.test index 0f9d5ec08..d6411d2b5 100755 --- a/tests/transform2.test +++ b/tests/transform2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2007, 2008, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_CC AC_OUTPUT diff --git a/tests/txinfo-unrecognized-extension.test b/tests/txinfo-unrecognized-extension.test index 94f217f4c..719f5082e 100755 --- a/tests/txinfo-unrecognized-extension.test +++ b/tests/txinfo-unrecognized-extension.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = foobar.foo bazquux.tex zardoz.c END diff --git a/tests/txinfo.test b/tests/txinfo.test index 2e9448674..cda39d266 100755 --- a/tests/txinfo.test +++ b/tests/txinfo.test @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_OUTPUT END diff --git a/tests/txinfo10.test b/tests/txinfo10.test index 7432c7f4e..28eee445f 100755 --- a/tests/txinfo10.test +++ b/tests/txinfo10.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2004, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' SUBDIRS = sub END diff --git a/tests/txinfo13.test b/tests/txinfo13.test index 81b39e461..aace4e68b 100755 --- a/tests/txinfo13.test +++ b/tests/txinfo13.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2006, 2007, 2011 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,8 +22,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/txinfo16.test b/tests/txinfo16.test index 4c14abacf..8ed8b11a1 100755 --- a/tests/txinfo16.test +++ b/tests/txinfo16.test @@ -20,8 +20,6 @@ required='makeinfo tex texi2dvi' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo17.test b/tests/txinfo17.test index 62408be10..92abcf5df 100755 --- a/tests/txinfo17.test +++ b/tests/txinfo17.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = texinfo.texi END diff --git a/tests/txinfo18.test b/tests/txinfo18.test index 8dc896163..dcc370504 100755 --- a/tests/txinfo18.test +++ b/tests/txinfo18.test @@ -21,8 +21,6 @@ required='makeinfo tex texi2dvi' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo19.test b/tests/txinfo19.test index aabe4be88..80602fd76 100755 --- a/tests/txinfo19.test +++ b/tests/txinfo19.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2011 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 @@ -19,8 +19,6 @@ required='makeinfo tex' . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/txinfo2.test b/tests/txinfo2.test index f51d0b631..39c404c24 100755 --- a/tests/txinfo2.test +++ b/tests/txinfo2.test @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo20.test b/tests/txinfo20.test index 5f6de57e6..dcd362b12 100755 --- a/tests/txinfo20.test +++ b/tests/txinfo20.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2011 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 @@ -19,8 +19,6 @@ required=makeinfo . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/txinfo21.test b/tests/txinfo21.test index 4bbce4aeb..39b7a549a 100755 --- a/tests/txinfo21.test +++ b/tests/txinfo21.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2003, 2004, 2006, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2006, 2008, 2011 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 @@ -20,8 +21,6 @@ required='makeinfo-html tex texi2dvi' . ./defs || Exit 1 -set -e - cat >>configure.in <<\EOF AC_CONFIG_FILES([rec/Makefile]) diff --git a/tests/txinfo22.test b/tests/txinfo22.test index 731e37adc..06819fdcf 100755 --- a/tests/txinfo22.test +++ b/tests/txinfo22.test @@ -22,8 +22,6 @@ required='makeinfo tex texi2dvi' . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([aux1]) diff --git a/tests/txinfo23.test b/tests/txinfo23.test index 660487d8c..7ec3796b8 100755 --- a/tests/txinfo23.test +++ b/tests/txinfo23.test @@ -22,8 +22,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo24.test b/tests/txinfo24.test index fc9f9d1e0..a6f9e023c 100755 --- a/tests/txinfo24.test +++ b/tests/txinfo24.test @@ -21,8 +21,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo25.test b/tests/txinfo25.test index f80b035da..a350a02a2 100755 --- a/tests/txinfo25.test +++ b/tests/txinfo25.test @@ -23,8 +23,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo26.test b/tests/txinfo26.test index e5e8f84b7..ba935518d 100755 --- a/tests/txinfo26.test +++ b/tests/txinfo26.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2008, 2011 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 @@ -20,8 +20,6 @@ required='makeinfo' . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/txinfo27.test b/tests/txinfo27.test index 0769fa5e3..368707ffb 100755 --- a/tests/txinfo27.test +++ b/tests/txinfo27.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2007, 2011 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 @@ -19,8 +19,6 @@ required='makeinfo' . ./defs || Exit 1 -set -e - echo AC_OUTPUT >> configure.in cat > Makefile.am << 'END' diff --git a/tests/txinfo28.test b/tests/txinfo28.test index 1fd702be5..26e8bb31f 100755 --- a/tests/txinfo28.test +++ b/tests/txinfo28.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2005, 2011 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,8 +21,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - # This setting, when honored by GNU ls, used to cause an infinite loop # in mdate-sh. TIME_STYLE="+%Y-%m-%d %H:%M:%S" diff --git a/tests/txinfo29.test b/tests/txinfo29.test index 42dd3abdf..6f986541a 100755 --- a/tests/txinfo29.test +++ b/tests/txinfo29.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' INFO_DEPS = foo.info info_TEXINFOS = bar.texi diff --git a/tests/txinfo3.test b/tests/txinfo3.test index 6af712faa..57ebd7197 100755 --- a/tests/txinfo3.test +++ b/tests/txinfo3.test @@ -20,8 +20,6 @@ required='makeinfo tex texi2dvi' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_OUTPUT END diff --git a/tests/txinfo30.test b/tests/txinfo30.test index 296180d0a..ee6976fb5 100755 --- a/tests/txinfo30.test +++ b/tests/txinfo30.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2010 Free Software Foundation, Inc. +# Copyright (C) 2005, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo info_TEXINFOS = bar.texi >Makefile.am echo grepme >bar.info $sleep diff --git a/tests/txinfo31.test b/tests/txinfo31.test index cb8df940c..d657f226e 100755 --- a/tests/txinfo31.test +++ b/tests/txinfo31.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo info_TEXINFOS = bar.texi >Makefile.am cat >bar.texi <<EOF @setfilename bar-1.9.info diff --git a/tests/txinfo32.test b/tests/txinfo32.test index 6b63ad840..6c7c75187 100755 --- a/tests/txinfo32.test +++ b/tests/txinfo32.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009 Free Software Foundation, Inc. +# Copyright (C) 2009, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - mkdir sub cat >>configure.in <<'END' AC_CONFIG_FILES([sub/Makefile]) diff --git a/tests/txinfo33.test b/tests/txinfo33.test index 4657a94bd..38bea681b 100755 --- a/tests/txinfo33.test +++ b/tests/txinfo33.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003, 2009 Free Software Foundation, Inc. +# Copyright (C) 2003, 2009, 2011 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 @@ -20,8 +20,6 @@ required='makeinfo tex texi2dvi-o dvips' . ./defs || Exit 1 -set -e - mkdir sub cat >> configure.in << 'END' diff --git a/tests/txinfo4.test b/tests/txinfo4.test index 0c55a1ca8..93acdba60 100755 --- a/tests/txinfo4.test +++ b/tests/txinfo4.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END diff --git a/tests/txinfo5.test b/tests/txinfo5.test index 0b3ea683b..e9c43fd37 100755 --- a/tests/txinfo5.test +++ b/tests/txinfo5.test @@ -23,8 +23,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE END diff --git a/tests/txinfo5b.test b/tests/txinfo5b.test index f14eadb00..be52e0bd5 100755 --- a/tests/txinfo5b.test +++ b/tests/txinfo5b.test @@ -21,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_MAINTAINER_MODE END diff --git a/tests/txinfo6.test b/tests/txinfo6.test index f5b8c0b64..e6af70c44 100755 --- a/tests/txinfo6.test +++ b/tests/txinfo6.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = foo.txi END diff --git a/tests/txinfo7.test b/tests/txinfo7.test index 9a1dd5ceb..2a3f17119 100755 --- a/tests/txinfo7.test +++ b/tests/txinfo7.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END diff --git a/tests/txinfo8.test b/tests/txinfo8.test index 8dd24a4a7..971e9edbd 100755 --- a/tests/txinfo8.test +++ b/tests/txinfo8.test @@ -21,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << END AC_INIT([$me], [1.0]) AC_CONFIG_AUX_DIR([auxdir]) diff --git a/tests/txinfo9.test b/tests/txinfo9.test index 71b5efb6d..ce1e72c53 100755 --- a/tests/txinfo9.test +++ b/tests/txinfo9.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = maude.texi liver.txi heart.texinfo END diff --git a/tests/unused.test b/tests/unused.test index f406b43f1..d22643f76 100755 --- a/tests/unused.test +++ b/tests/unused.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2002, 2003, 2008, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1998, 2002, 2003, 2008, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' MACRO_1 MACRO_1_2 diff --git a/tests/upc.test b/tests/upc.test index 3c55ccbdf..ad072bf66 100755 --- a/tests/upc.test +++ b/tests/upc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -17,8 +17,6 @@ # A simple Hello World for UPC. . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AM_PROG_UPC AC_OUTPUT diff --git a/tests/upc2.test b/tests/upc2.test index 6b717fdc6..616b2f4ca 100755 --- a/tests/upc2.test +++ b/tests/upc2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - echo AC_PROG_CC >>configure.in cat >Makefile.am <<'END' diff --git a/tests/upc3.test b/tests/upc3.test index f575b9ac6..4692398b1 100755 --- a/tests/upc3.test +++ b/tests/upc3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2011 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 @@ -17,8 +17,6 @@ # Test that C and Unified Parallel C link safely. . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_UPC diff --git a/tests/vala.test b/tests/vala.test index 3e9ae3648..3e1ef65aa 100755 --- a/tests/vala.test +++ b/tests/vala.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ required="libtool" . ./defs || Exit 1 -set -e - cat >> 'configure.in' << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/vala1.test b/tests/vala1.test index d0cc24101..5030f7232 100755 --- a/tests/vala1.test +++ b/tests/vala1.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -25,8 +25,6 @@ required="libtool" . ./defs || Exit 1 -set -e - cat >> 'configure.in' << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/vala2.test b/tests/vala2.test index e559540d6..d5308e35b 100755 --- a/tests/vala2.test +++ b/tests/vala2.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ required="libtool libtoolize pkg-config valac gcc GNUmake" . ./defs || Exit 1 -set -e - mkdir src cat >> 'configure.in' << 'END' diff --git a/tests/vala3.test b/tests/vala3.test index 138e85335..2d9c85c33 100755 --- a/tests/vala3.test +++ b/tests/vala3.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ required="libtool libtoolize pkg-config valac gcc GNUmake" . ./defs || Exit 1 -set -e - mkdir src cat >> 'configure.in' << 'END' diff --git a/tests/vala4.test b/tests/vala4.test index 7a15ebe20..acd4f7ee9 100755 --- a/tests/vala4.test +++ b/tests/vala4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2008, 2009, 2011 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -23,8 +23,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL diff --git a/tests/vala5.test b/tests/vala5.test index 8fc703c4f..d6ff62954 100755 --- a/tests/vala5.test +++ b/tests/vala5.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2008, 2009, 2011 Free Software +# Foundation, Inc. # # This file is part of GNU Automake. # @@ -24,8 +24,6 @@ required="libtool libtoolize pkg-config valac gcc GNUmake" . ./defs || Exit 1 -set -e - mkdir src cat >> 'configure.in' << 'END' diff --git a/tests/vars.test b/tests/vars.test index c88db6861..1a33b3bd7 100755 --- a/tests/vars.test +++ b/tests/vars.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' MY_FLAGS_1=-DABC=345 MY_FLAGS_2= -DABC=345 diff --git a/tests/vars3.test b/tests/vars3.test index 842d567ad..9608d6cf3 100755 --- a/tests/vars3.test +++ b/tests/vars3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >Makefile.am <<'EOF' L01 = $(shell echo *) L02 = $$(not an error) diff --git a/tests/vartar.test b/tests/vartar.test index a33ab64ea..8fd77166b 100755 --- a/tests/vartar.test +++ b/tests/vartar.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' install = install install: diff --git a/tests/vartypo2.test b/tests/vartypo2.test index 5b8740416..a212c2bc8 100755 --- a/tests/vartypo2.test +++ b/tests/vartypo2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -20,8 +20,6 @@ required=libtoolize . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_LIBTOOL AC_OUTPUT diff --git a/tests/vartypos.test b/tests/vartypos.test index 73e7c553c..fe4f8e660 100755 --- a/tests/vartypos.test +++ b/tests/vartypos.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<'END' AC_PROG_RANLIB AC_OUTPUT diff --git a/tests/version.test b/tests/version.test index a894a7556..48c0ff670 100755 --- a/tests/version.test +++ b/tests/version.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE([sh-utils], [1.12o]) diff --git a/tests/version2.test b/tests/version2.test index a25b82b1c..86bc8d968 100755 --- a/tests/version2.test +++ b/tests/version2.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1997, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT AM_INIT_AUTOMAKE([sh-utils], [1.12o], [no]) diff --git a/tests/version3.test b/tests/version3.test index b7d356d23..5423e7c38 100755 --- a/tests/version3.test +++ b/tests/version3.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1998, 2001, 2002, 2003, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = 9.9x END diff --git a/tests/version4.test b/tests/version4.test index f8ceafed9..1e5510d1e 100755 --- a/tests/version4.test +++ b/tests/version4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = 1.4-p3 END diff --git a/tests/version6.test b/tests/version6.test index 6993c0608..ca87e3624 100755 --- a/tests/version6.test +++ b/tests/version6.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - amver=`$AUTOMAKE --version | sed -e 's/.* //;1q'` cat > Makefile.am << END diff --git a/tests/version7.test b/tests/version7.test index a87b2b81e..2385b07a9 100755 --- a/tests/version7.test +++ b/tests/version7.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002, 2008, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2008, 2010, 2011 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 @@ -22,8 +22,6 @@ required='makeinfo tex texi2dvi GNUmake' . ./defs || Exit 1 -set -e - cat >configure.in <<END m4_include([version.m4]) AC_INIT([$me], [THE_VERSION]) diff --git a/tests/version8.test b/tests/version8.test index 91b11a0a7..9552afff2 100755 --- a/tests/version8.test +++ b/tests/version8.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005, 2008 Free Software Foundation, Inc. +# Copyright (C) 2005, 2008, 2011 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 @@ -18,7 +18,6 @@ . ./defs || Exit 1 -set -e echo 'AM_AUTOMAKE_VERSION([1.9])' >>configure.in $ACLOCAL 2>stderr && { cat stderr >&2; Exit 0; } cat stderr >&2 diff --git a/tests/vpath.test b/tests/vpath.test index a95f5b2bc..4cbd5a182 100755 --- a/tests/vpath.test +++ b/tests/vpath.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1996, 2001, 2002, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' VPATH = zardoz END diff --git a/tests/vtexi.test b/tests/vtexi.test index e9a45111f..c0e49f9b6 100755 --- a/tests/vtexi.test +++ b/tests/vtexi.test @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END diff --git a/tests/vtexi2.test b/tests/vtexi2.test index 00e4c1e79..958de07bd 100755 --- a/tests/vtexi2.test +++ b/tests/vtexi2.test @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' info_TEXINFOS = zardoz.texi END diff --git a/tests/vtexi3.test b/tests/vtexi3.test index 34f46c55c..83e64821f 100755 --- a/tests/vtexi3.test +++ b/tests/vtexi3.test @@ -22,8 +22,6 @@ . ./defs || Exit 1 -set -e - distdir=$me-7.45.3a # This should work without tex, texinfo or makeinfo diff --git a/tests/vtexi4.test b/tests/vtexi4.test index 3c8ab4103..b6d970ad1 100755 --- a/tests/vtexi4.test +++ b/tests/vtexi4.test @@ -24,8 +24,6 @@ required='makeinfo tex texi2dvi-o' . ./defs || Exit 1 -set -e - case `LC_ALL=C date '+%u'` in [1-7]) date_is_posix=:;; *) date_is_posx=false;; diff --git a/tests/warnopts.test b/tests/warnopts.test index b47216421..edcf70ac4 100755 --- a/tests/warnopts.test +++ b/tests/warnopts.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2010 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2010, 2011 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 @@ -18,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<END AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/werror.test b/tests/werror.test index d1b173caf..8ea6c6792 100755 --- a/tests/werror.test +++ b/tests/werror.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - : > Makefile.am rm -f install-sh depcomp missing mkinstalldirs diff --git a/tests/werror2.test b/tests/werror2.test index 6b6d011a7..c3c46a560 100755 --- a/tests/werror2.test +++ b/tests/werror2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004, 2009 Free Software Foundation, Inc. +# Copyright (C) 2004, 2009, 2011 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 @@ -22,8 +22,6 @@ required=GNUmake . ./defs || Exit 1 -set -e - echo AC_OUTPUT>>configure.in : > Makefile.am diff --git a/tests/werror3.test b/tests/werror3.test index 96b4ff347..98cc8f0da 100755 --- a/tests/werror3.test +++ b/tests/werror3.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<\END AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/werror4.test b/tests/werror4.test index 831d0fdc0..2ffaa4eeb 100755 --- a/tests/werror4.test +++ b/tests/werror4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >>configure.in <<\END AC_CONFIG_FILES([sub/Makefile]) AC_OUTPUT diff --git a/tests/whoami.test b/tests/whoami.test index 37bd81a04..fa1b08dcf 100755 --- a/tests/whoami.test +++ b/tests/whoami.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 1998, 2002, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' WHO_AM_I=17 END diff --git a/tests/xsource.test b/tests/xsource.test index df140a59d..573941323 100755 --- a/tests/xsource.test +++ b/tests/xsource.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat > Makefile.am << 'END' bin_PROGRAMS = zardoz zardoz_SOURCES = z.c x/z.c diff --git a/tests/xz.test b/tests/xz.test index f442711b4..50bfb4a9c 100755 --- a/tests/xz.test +++ b/tests/xz.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008, 2011 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 @@ -19,8 +19,6 @@ required=xz . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([xz], [1.0]) AM_INIT_AUTOMAKE([no-dist-gzip dist-xz]) diff --git a/tests/yacc-basic.test b/tests/yacc-basic.test index e8bf27d00..3e29e797c 100755 --- a/tests/yacc-basic.test +++ b/tests/yacc-basic.test @@ -19,8 +19,6 @@ required=bison . ./defs || Exit 1 -set -e - distdir=$me-1.0 cat >> configure.in << 'END' diff --git a/tests/yacc-clean.test b/tests/yacc-clean.test index d6a3fcaa8..cc3f12449 100755 --- a/tests/yacc-clean.test +++ b/tests/yacc-clean.test @@ -21,8 +21,6 @@ required=bison . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc-d-basic.test b/tests/yacc-d-basic.test index f5f88d8af..8af44abd4 100755 --- a/tests/yacc-d-basic.test +++ b/tests/yacc-d-basic.test @@ -20,8 +20,6 @@ required=bison . ./defs || Exit 1 -set -e - tab=' ' distdir=$me-1.0 diff --git a/tests/yacc-d-vpath.test b/tests/yacc-d-vpath.test index 0edaaa8a4..74d254cd1 100755 --- a/tests/yacc-d-vpath.test +++ b/tests/yacc-d-vpath.test @@ -25,8 +25,6 @@ required=bison . ./defs || Exit 1 -set -e - distdir=$me-1.0 cat >> configure.in << 'END' diff --git a/tests/yacc-dist-nobuild.test b/tests/yacc-dist-nobuild.test index a6444dea1..765517b13 100755 --- a/tests/yacc-dist-nobuild.test +++ b/tests/yacc-dist-nobuild.test @@ -20,8 +20,6 @@ required=bison . ./defs || Exit 1 -set -e - distdir=$me-1.0 cat >> configure.in << 'END' diff --git a/tests/yacc-nodist.test b/tests/yacc-nodist.test index 2b4ce09a5..ebef384e4 100755 --- a/tests/yacc-nodist.test +++ b/tests/yacc-nodist.test @@ -19,8 +19,6 @@ required=bison . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc.test b/tests/yacc.test index 13b7fe3d9..9a5db93e2 100755 --- a/tests/yacc.test +++ b/tests/yacc.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1996, 2001, 2002, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1996, 2001, 2002, 2006, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc2.test b/tests/yacc2.test index 959c6b5a3..bf5084b47 100755 --- a/tests/yacc2.test +++ b/tests/yacc2.test @@ -21,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc4.test b/tests/yacc4.test index bb252908d..8f272b25e 100755 --- a/tests/yacc4.test +++ b/tests/yacc4.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2010, 2011 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 @@ -19,8 +19,6 @@ required='bison gcc' . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc5.test b/tests/yacc5.test index 77de2e998..191092483 100755 --- a/tests/yacc5.test +++ b/tests/yacc5.test @@ -1,5 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2010 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2010, 2011 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 @@ -19,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/yacc6.test b/tests/yacc6.test index b9b259bb3..10507569c 100755 --- a/tests/yacc6.test +++ b/tests/yacc6.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007, 2010, 2011 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 @@ -23,8 +23,6 @@ required='gcc bison GNUmake' . ./defs || Exit 1 -set -e - cat > configure.in << 'END' AC_INIT([yacc6], [1.0]) # `aux' is not an acceptable file/directory name on Windows systems diff --git a/tests/yacc7.test b/tests/yacc7.test index 2b866bc9a..ce236dfa4 100755 --- a/tests/yacc7.test +++ b/tests/yacc7.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2003, 2004, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2010, 2011 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 @@ -24,8 +24,6 @@ required=bison . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yacc8.test b/tests/yacc8.test index 797f4e76a..ed20b25bf 100755 --- a/tests/yacc8.test +++ b/tests/yacc8.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2002, 2003, 2004, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 2002, 2003, 2004, 2006, 2010, 2011 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,8 +21,6 @@ required="gcc bison" . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AM_PROG_CC_C_O diff --git a/tests/yaccdry.test b/tests/yaccdry.test index d2e763231..4daa04af5 100755 --- a/tests/yaccdry.test +++ b/tests/yaccdry.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -19,8 +19,6 @@ required=bison . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yaccpp.test b/tests/yaccpp.test index 9c4ae24cb..0d0591d7d 100755 --- a/tests/yaccpp.test +++ b/tests/yaccpp.test @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 1997, 2001, 2002, 2006, 2010 Free Software Foundation, -# Inc. +# Copyright (C) 1997, 2001, 2002, 2006, 2010, 2011 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 @@ -20,8 +20,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in << 'END' AC_PROG_CXX AC_PROG_YACC diff --git a/tests/yaccvpath.test b/tests/yaccvpath.test index c4dc400ca..170936ffd 100755 --- a/tests/yaccvpath.test +++ b/tests/yaccvpath.test @@ -26,8 +26,6 @@ required=bison . ./defs || Exit 1 -set -e - distdir=$me-1.0 cat >> configure.in << 'END' diff --git a/tests/yflags-cmdline-override.test b/tests/yflags-cmdline-override.test index 86c35832e..aecff9fa7 100755 --- a/tests/yflags-cmdline-override.test +++ b/tests/yflags-cmdline-override.test @@ -20,8 +20,6 @@ required=yacc . ./defs || Exit 1 -set -e - unset YFLAGS || : cat >> configure.in <<'END' diff --git a/tests/yflags-conditional.test b/tests/yflags-conditional.test index 1dcdef957..68e25eb77 100755 --- a/tests/yflags-conditional.test +++ b/tests/yflags-conditional.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC diff --git a/tests/yflags-d-false-positives.test b/tests/yflags-d-false-positives.test index 38ea7639c..6decf9d83 100755 --- a/tests/yflags-d-false-positives.test +++ b/tests/yflags-d-false-positives.test @@ -18,8 +18,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yflags-force-conditional.test b/tests/yflags-force-conditional.test index 65f3197df..dd3b2dea3 100755 --- a/tests/yflags-force-conditional.test +++ b/tests/yflags-force-conditional.test @@ -19,8 +19,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yflags-force-override.test b/tests/yflags-force-override.test index 7a3197fcd..b76b529ea 100755 --- a/tests/yflags-force-override.test +++ b/tests/yflags-force-override.test @@ -21,8 +21,6 @@ required=yacc . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yflags-var-expand.test b/tests/yflags-var-expand.test index 1967be300..de38a7420 100755 --- a/tests/yflags-var-expand.test +++ b/tests/yflags-var-expand.test @@ -21,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >> configure.in <<'END' AC_PROG_CC AC_PROG_YACC diff --git a/tests/yflags.test b/tests/yflags.test index fcb0c64a9..7113da834 100755 --- a/tests/yflags.test +++ b/tests/yflags.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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,8 +21,6 @@ . ./defs || Exit 1 -set -e - cat >fake-yacc <<'END' #!/bin/sh echo '/*' "$*" '*/' >y.tab.c diff --git a/tests/yflags2.test b/tests/yflags2.test index 346c2e4b3..fac4524f4 100755 --- a/tests/yflags2.test +++ b/tests/yflags2.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 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 @@ -22,8 +22,6 @@ required=g++ # FIXME: any working C++ compiler should be OK . ./defs || Exit 1 -set -e - cat >fake-yacc <<'END' #!/bin/sh echo '/*' "$*" '*/' >y.tab.c |