]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Run more tests under Solaris.
authorEric Blake <ebb9@byu.net>
Fri, 24 Jul 2009 02:58:12 +0000 (20:58 -0600)
committerEric Blake <ebb9@byu.net>
Fri, 24 Jul 2009 03:03:55 +0000 (21:03 -0600)
* tests/local.at (AT_CHECK_AUTOCONF): Don't skip entire test
group when passing over syntax checks.

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

index e309b19f04871ed0a43c243401101278d49535ae..19527f0465264c4db3db35ff5c5840a340a61bba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-07-23  Eric Blake  <ebb9@byu.net>
+
+       Run more tests under Solaris.
+       * tests/local.at (AT_CHECK_AUTOCONF): Don't skip entire test
+       group when passing over syntax checks.
+
 2009-07-23  Romain Lenglet  <romain.lenglet@laposte.net>
 
        Clean up temporary files generated by Erlang macros.
index 9280e2370c1961e4d44724914172d18553e2e44e..ed7e509a2d4e80864dc068e763f83247b2e126a9 100644 (file)
@@ -210,8 +210,8 @@ cp "$abs_top_srcdir/tests/statesave.m4" aclocal.m4
 # were running too fast.
 m4_define([AT_CHECK_AUTOCONF],
 [AT_CHECK_M4([autoconf --force $1], [$2], [$3], [$4])
-if test -s configure; then
-  AT_CHECK_SHELL_SYNTAX(configure)
+if test -s configure && test "$ac_cv_sh_n_works" = yes; then
+  AT_CHECK_SHELL_SYNTAX([configure])
 fi
 ])