]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix testsuite failure on Solaris.
authorEric Blake <ebb9@byu.net>
Sat, 22 Nov 2008 15:40:39 +0000 (08:40 -0700)
committerEric Blake <ebb9@byu.net>
Sat, 22 Nov 2008 15:40:39 +0000 (08:40 -0700)
* tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Normalize
failure status to 1.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
tests/torture.at

index d72ad1fb61d3e072c8ac2001d7453d71e12d9100..a52182a6ed4a21953e86299c09415f9eb400be57 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-22  Eric Blake  <ebb9@byu.net>
+
+       Fix testsuite failure on Solaris.
+       * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Normalize
+       failure status to 1.
+
 2008-11-21  Eric Blake  <ebb9@byu.net>
 
        Clean up AS_MESSAGE_LOG_FD usage.
index 1a9ea4f2ae59750631dadd37354f1f3493ee8668..4779e215504465914918037ef621c580d5e3b416 100644 (file)
@@ -244,7 +244,8 @@ AT_CHECK_CONFIGURE([what_to_test=var-$1 --no-create])
 touch t
 chmod a-w .
 mv t t1 >/dev/null 2>&1 \
-  || AT_CHECK([./config.status var-$1 </dev/null], [1], [ignore], [ignore])
+  || AT_CHECK([./config.status var-$1 </dev/null || exit 1],
+   [1], [ignore], [ignore])
 chmod u+w .
 rm -rf t t1
 ])# AT_CHECK_CONFIG_CREATION_NOWRITE