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.61a-377


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.61a-377-gac17e81
Date: Tue, 04 Mar 2008 22:52:43 +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=ac17e815dcbd086e67069fbbf1de74cdaa012bc4

The branch, master has been updated
       via  ac17e815dcbd086e67069fbbf1de74cdaa012bc4 (commit)
      from  6f8e57e72fe10c124fb6af600e23220d36708556 (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 ac17e815dcbd086e67069fbbf1de74cdaa012bc4
Author: Ralf Wildenhues <address@hidden>
Date:   Tue Mar 4 23:52:07 2008 +0100

    On MinGW, substitution of CR and 0xFF fails.
    
    * tests/torture.at (Substitute and define special characters):
    MinGW awk cannot handle 0xFF, and on MinGW, the test does the
    wrong thing for CR.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

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

Summary of changes:
 ChangeLog        |    7 +++++++
 tests/torture.at |    4 +++-
 2 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2a73baa..d11c6db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-03-04  Ralf Wildenhues  <address@hidden>
+
+       On MinGW, substitution of CR and 0xFF fails.
+       * tests/torture.at (Substitute and define special characters):
+       MinGW awk cannot handle 0xFF, and on MinGW, the test does the
+       wrong thing for CR.
+
 2008-03-04  Eric Blake  <address@hidden>
 
        Pull in recent maintainer improvements from coreutils.
diff --git a/tests/torture.at b/tests/torture.at
index d8ae8f3..60e26d4 100644
--- a/tests/torture.at
+++ b/tests/torture.at
@@ -778,7 +778,9 @@ baz=bla
     for j in 0 1 2 3 4 5 6 7; do
       for k in 0 1 2 3 4 5 6 7; do
        case $i$j$k in #(
-       000) ;; #(
+       000 | 015 | 377) ;; # MinGW awk dislikes 0xFF, and the test does
+                           # the wrong thing for CR on MinGW.
+                           #(
        *) printf \\$i$j$k's' ;; # The 's' works around a Solaris 8 /bin/bash 
bug.
        esac
       done


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

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