]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Remove redundant unset of variable TESTS from some test scripts.
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 4 Mar 2010 20:09:13 +0000 (21:09 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 5 Mar 2010 06:15:48 +0000 (07:15 +0100)
* tests/color.test: Do not unset the `TESTS' variable, as it's
already unset in the `defs' file.
* tests/check5.test: Likewise.
* tests/check8.test: Likewise.
* tests/check9.test: Likewise.
* tests/check10.test: Likewise.
* tests/check11.test: Likewise.
* tests/parallel-tests.test: Likewise.
* tests/parallel-tests3.test: Likewise.
* tests/parallel-tests4.test: Likewise.
* tests/parallel-tests5.test: Likewise.
* tests/parallel-tests6.test: Likewise.
* tests/parallel-tests7.test: Likewise.

13 files changed:
ChangeLog
tests/check10.test
tests/check11.test
tests/check5.test
tests/check8.test
tests/check9.test
tests/color.test
tests/parallel-tests.test
tests/parallel-tests3.test
tests/parallel-tests4.test
tests/parallel-tests5.test
tests/parallel-tests6.test
tests/parallel-tests7.test

index fad03cd857bee2707934f1bb83d31f6871637002..84faddcf2557b9340e12709caed76fd689dba375 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2010-03-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       Remove redundant unset of variable TESTS from some test scripts.
+       * tests/color.test: Do not unset the `TESTS' variable, as it's
+       already unset in the `defs' file.
+       * tests/check5.test: Likewise.
+       * tests/check8.test: Likewise.
+       * tests/check9.test: Likewise.
+       * tests/check10.test: Likewise.
+       * tests/check11.test: Likewise.
+       * tests/parallel-tests.test: Likewise.
+       * tests/parallel-tests3.test: Likewise.
+       * tests/parallel-tests4.test: Likewise.
+       * tests/parallel-tests5.test: Likewise.
+       * tests/parallel-tests6.test: Likewise.
+       * tests/parallel-tests7.test: Likewise.
+
 2010-02-22  Karl Berry  <karl@gnu.org>
 
        Improve help message of mdate-sh.
index 76af4528007927cf2117751a387488dd00cc02b7..ab9b5298cda9d54fb2193138c2d54786113fc54a 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2008, 2009  Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -54,8 +54,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE
 
-unset TESTS || :
-
 ./configure
 (
   # Do not check for failure in this subshell
index d3118a766ad4d32e12eabd09c00244a3eb9c09be..1fe6a4d3a26c8e0bedc4c6ab7032d50cc266087d 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -39,8 +39,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 env TESTS=skip $MAKE -e check >stdout
 cat stdout
index 857432b97573a1fceb5cbb134d4462fa9ce25e89..7113e1b3e637c6a85ecec43193e0368a2bdbf02f 100755 (executable)
@@ -1,5 +1,6 @@
 #! /bin/sh
-# Copyright (C) 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
+# Copyright (C) 2006, 2007, 2008, 2009, 2010  Free Software Foundation,
+# Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -46,7 +47,6 @@ END
 cp one.c two.c
 
 ./configure
-unset TESTS || :
 $MAKE check
 test -f ok
 EXEEXT=.bin $MAKE -e print-tests >output
index 793658295804fcc4a5cd2208945382c99c8c2f0d..dc8d3dda71e6abe221d3e8178f5e010f476ee9dc 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2008, 2009  Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -64,8 +64,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 AM_COLOR_TESTS=always $MAKE -e check >stdout 2>stderr &&
   { cat stdout; cat stderr >&2; Exit 1; }
index ed886901ce76475bbc01ed94a00667b4c6c7ecd5..c80d780b4bbfcec68de4bdc331ba8ac839cde0b3 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2008, 2009  Free Software Foundation, Inc.
+# Copyright (C) 2008, 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -64,8 +64,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 $MAKE all
 $MAKE check
index a5bd063f7e53dce6ca19b0d4ed2901b09790cf32..6fa686d7f1359b0af7802f5813ae1d04fd80994a 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2007, 2008  Free Software Foundation, Inc.
+# Copyright (C) 2007, 2008, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -99,8 +99,6 @@ spawn $env(MAKE) -e check
 expect eof
 END
 
-unset TESTS || :
-
 AM_COLOR_TESTS=always $MAKE -e check >stdout && { cat stdout; Exit 1; }
 cat stdout
 test_color
index 385cef32921957751be703e6164280dd25b1dbf8..97e27b150d26162449bbee337dedff7e614090cf 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -61,8 +61,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 # No hard errors: all tests should be run, there should be one failure.
 env DISABLE_HARD_ERRORS=yes $MAKE -e check >stdout && { cat stdout; Exit 1; }
index d631d6726a2ae38f50552a65fa7a9c2acf12d9d5..e1cbe9f44d41db6dd1da11f5fb23e0c6d22c8bee 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -52,8 +52,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 for build in serial parallel; do
   mkdir $build
   cd $build
index d842486cb1416ff8e7bc5880a53192e7375ce4e8..f48da5ef990a94b450bd72b6c6e9a427a64c74c7 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -56,8 +56,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 $MAKE
 $MAKE check
index a7bbc9e16f6867ea918a8b30c86c7d5b80e845ac..6db5db6e2d73006665f0bb67ec3c1faecf037390 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -60,8 +60,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 $MAKE -j4 check
 $MAKE distcheck
index 5dbb433558c0a3976f35bf5f98370b337075a16d..7ed7ad6daaa3ebe70c883f1f5a05b5f0e5679e8f 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -34,8 +34,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 $MAKE check >stdout || { cat stdout; Exit 1; }
 cat stdout
index c2ae63a160e14fe4c953e8f880a88ab82a86b51e..2432c880a8732ab7d853ebc0220393084af7eac3 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2009  Free Software Foundation, Inc.
+# Copyright (C) 2009, 2010  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -77,8 +77,6 @@ $ACLOCAL
 $AUTOCONF
 $AUTOMAKE -a
 
-unset TESTS || :
-
 ./configure
 $MAKE
 $MAKE check