]> sourceware.org Git - automake.git/commitdiff
* tests/java.test: `configure' uses a trap, so use `(exit 77);
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 10 May 2006 20:58:16 +0000 (20:58 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 10 May 2006 20:58:16 +0000 (20:58 +0000)
exit 77' to portably set the exit status similar to AS_EXIT.
* tests/fn99.test: propagate nonzero exit status from subshell.

ChangeLog
tests/fn99.test
tests/java.test

index fa126d42b2f6c809139f9609427ebeacd64f4f80..0e1664e3e70859a0256543341ae6ec7f1866e2da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-05-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/java.test: `configure' uses a trap, so use `(exit 77);
+       exit 77' to portably set the exit status similar to AS_EXIT.
+       * tests/fn99.test: propagate nonzero exit status from subshell.
+
        * tests/mkinst3.test: Fix `mkdir' wrapper to not be confused
        if ``pwd`' contains the string `-p'.  Create the wrapper in a
        subdirectory so that `.' in $PATH does not lead to an endless
index 05678ee7a6fc52103a6e930ad18f0d997dae1d99..b389743ba9cbe92d6098692f7468c7f89cedac43 100755 (executable)
@@ -36,7 +36,7 @@ do
   mkdir -p 12345678 || exit 77
   cd 12345678
   touch x
-done)
+done) || exit 77
 
 $ACLOCAL
 $AUTOCONF
@@ -49,7 +49,7 @@ do
   mkdir -p 12345678 || exit 77
   cd 12345678
   touch x
-done)
+done) || exit 77
 
 $MAKE dist 2>stderr && exit 1
 cat stderr
index e9f53635a0696965ed3304d3f2aa8a9b852fa72c..904044ee5ebbbfb4fa6b01745d0ba20439dcc6a6 100755 (executable)
@@ -26,7 +26,7 @@ set -e
 
 cat >>configure.in <<'EOF'
 AC_CHECK_PROG([HAS_JAVAC], [javac], [:], [exit])
-$HAS_JAVAC 77
+($HAS_JAVAC 77); $HAS_JAVAC 77
 AC_OUTPUT
 EOF
 
This page took 0.03215 seconds and 5 git commands to generate.