exit 77' to portably set the exit status similar to AS_EXIT.
* tests/fn99.test: propagate nonzero exit status from subshell.
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
mkdir -p 12345678 || exit 77
cd 12345678
touch x
-done)
+done) || exit 77
$ACLOCAL
$AUTOCONF
mkdir -p 12345678 || exit 77
cd 12345678
touch x
-done)
+done) || exit 77
$MAKE dist 2>stderr && exit 1
cat stderr
cat >>configure.in <<'EOF'
AC_CHECK_PROG([HAS_JAVAC], [javac], [:], [exit])
-$HAS_JAVAC 77
+($HAS_JAVAC 77); $HAS_JAVAC 77
AC_OUTPUT
EOF