autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.66-2-gb


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.66-2-gb33f7ca
Date: Sun, 04 Jul 2010 18:50:03 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=b33f7cab06c31a1e89602c69588e8bf37fe23ac3

The branch, master has been updated
       via  b33f7cab06c31a1e89602c69588e8bf37fe23ac3 (commit)
      from  f2a851cbc5226d49cb751b46e8f4429c4eaea5bc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b33f7cab06c31a1e89602c69588e8bf37fe23ac3
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jul 4 20:22:29 2010 +0200

    Fix testsuite to not trigger Solaris sh for bug.
    
    * tests/torture.at (Torturing config.status)
    (Substitute a 2000-byte string)
    (Substitute and define special characters)
    (Substitute a newline): Quote first argument in for list so
    that it does not look like an assignment.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |    9 +++++++++
 tests/torture.at |   14 +++++++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ac17d8c..894059e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-07-04  Ralf Wildenhues  <address@hidden>
+
+       Fix testsuite to not trigger Solaris sh for bug.
+       * tests/torture.at (Torturing config.status)
+       (Substitute a 2000-byte string)
+       (Substitute and define special characters)
+       (Substitute a newline): Quote first argument in for list so
+       that it does not look like an assignment.
+
 2010-07-02  Eric Blake  <address@hidden>
 
        Post-release administrivia.
diff --git a/tests/torture.at b/tests/torture.at
index 27405b7..5f13874 100644
--- a/tests/torture.at
+++ b/tests/torture.at
@@ -684,8 +684,9 @@ AC_OUTPUT
 
 AT_CHECK_AUTOCONF
 AT_CHECK_AUTOHEADER
-# Check both awk and the result of AC_PROG_AWK
-for awk_arg in FOO= AWK=awk; do
+# Check both awk and the result of AC_PROG_AWK.
+# Quote the first word in the for list for Solaris sh.
+for awk_arg in "FOO=" AWK=awk; do
   AT_CHECK_CONFIGURE([$awk_arg])
 
   # Checking that AC_DEFINE worked properly.
@@ -800,7 +801,8 @@ EOF
 
 AT_CHECK_AUTOCONF
 # Check both awk and the result of AC_PROG_AWK
-for awk_arg in Foo= AWK=awk; do
+# Quote the first word in the for list for Solaris sh.
+for awk_arg in "Foo=" AWK=awk; do
   AT_CHECK_CONFIGURE([$awk_arg])
   AT_CHECK([cat Foo], 0, m4_for([n], 1, 100,, ....................)
 )
@@ -910,7 +912,8 @@ AC_CONFIG_FILES([Foo Zardoz])]])
 AT_CHECK_AUTOCONF
 AT_CHECK_AUTOHEADER
 # Check both awk and the result of AC_PROG_AWK
-for awk_arg in FOO= AWK=awk; do
+# Quote the first word in the for list for Solaris sh.
+for awk_arg in "FOO=" AWK=awk; do
   AT_CHECK_CONFIGURE([$awk_arg])
   AT_CHECK([cat Foo], 0, [[X*'[]+ ", & &`\($foo \& \\& \\\& \\\\& \ \\ \\\ !
 @foo@ @baz@@address@hidden stray @ and more@@bla
@@ -975,7 +978,8 @@ x' >expout
 
 AT_CHECK_AUTOCONF
 # Check both awk and the result of AC_PROG_AWK
-for awk_arg in FOO= AWK=awk; do
+# Quote the first word in the for list for Solaris sh.
+for awk_arg in "FOO=" AWK=awk; do
   AT_CHECK_CONFIGURE([$awk_arg])
   AT_CHECK([cat Foo], 0, [expout])
 done


hooks/post-receive
-- 
GNU Autoconf source repository



reply via email to

[Prev in Thread] Current Thread [Next in Thread]