]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Use `set -e' in confsub.test (avoid false negatives).
authorStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 9 Apr 2010 16:24:34 +0000 (18:24 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 25 Apr 2010 15:47:00 +0000 (17:47 +0200)
* tests/confsub.test: Enable shell `errexit' flag, and related
changes (this helps avoiding some possible minor false negatives).
Also, bumped copyright years.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/confsub.test

index 9f69f7ab2c0bc50a325f0afb3cc7af2977b063ab..9fd00dc25c36694fadb612a74231b6ef0617b48e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-04-20  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       Use `set -e' in confsub.test (avoids possible false negatives).
+       * tests/confsub.test: Enable shell `errexit' flag, and related
+       changes (this helps avoiding some possible minor false negatives).
+       Also, bumped copyright years.
+
 2010-04-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Fix -Werror handling for presence of configure.in and configure.ac.
index 40c90c5eab992da3f4ab1f7325d3bd56a4d9899f..65ec91bcbb86cd0b965533ce656314678d5063ce 100755 (executable)
@@ -1,6 +1,6 @@
 #! /bin/sh
-# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003
-# Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 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
@@ -20,6 +20,8 @@
 
 . ./defs || Exit 1
 
+set -e
+
 cat > configure.in << 'END'
 AC_INIT
 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
@@ -55,5 +57,3 @@ $sleep
 echo 'After.' > subdir/config.hin
 $MAKE || Exit 1
 $FGREP 'After.' subdir/config.h || Exit 1
-
-Exit 0