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.68-2-g8


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.68-2-g8449314
Date: Fri, 24 Sep 2010 16:31:48 +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=8449314a7a2ba0faf915a0842407ef73287b6d51

The branch, master has been updated
       via  8449314a7a2ba0faf915a0842407ef73287b6d51 (commit)
      from  3c11ae063d3ce070d0bef87c23692c6bd642814b (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 8449314a7a2ba0faf915a0842407ef73287b6d51
Author: Ralf Wildenhues <address@hidden>
Date:   Fri Sep 24 06:34:39 2010 +0200

    tests: normalize trailing spaces in gcc -E -dD output.
    
    * tests/compile.at (AC_LANG_SOURCE example)
    (AC_LANG_PROGRAM example): Remove trailing spaces before
    comparing with expected output.  Fixes testsuite failure
    with GCC 2.95.3 on Haiku.
    Report by Scott McCreary.
    
    Signed-off-by: Eric Blake <address@hidden>

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

Summary of changes:
 ChangeLog        |    9 +++++++++
 tests/compile.at |    4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 8dba8bf..78590f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-24  Ralf Wildenhues  <address@hidden>
+
+       tests: normalize trailing spaces in gcc -E -dD output.
+       * tests/compile.at (AC_LANG_SOURCE example)
+       (AC_LANG_PROGRAM example): Remove trailing spaces before
+       comparing with expected output.  Fixes testsuite failure
+       with GCC 2.95.3 on Haiku.
+       Report by Scott McCreary.
+
 2010-09-22  Eric Blake  <address@hidden>
 
        Release Version 2.68.
diff --git a/tests/compile.at b/tests/compile.at
index dd7175b..a39a6f1 100644
--- a/tests/compile.at
+++ b/tests/compile.at
@@ -193,7 +193,7 @@ AT_CHECK_CONFIGURE([], [], [stdout])
 # Note that the output may contain more defines and lines matching
 #   # 1 "conftest.c"
 # so delete everything before the interesting output.
-AT_CHECK([sed -n '/#define PACKAGE/,$p' stdout], [],
+AT_CHECK([sed -n 's/ *$//; /#define PACKAGE/,$p' stdout], [],
 [[#define PACKAGE_NAME "Hello"
 #define PACKAGE_TARNAME "hello"
 #define PACKAGE_VERSION "1.0"
@@ -238,7 +238,7 @@ AT_CHECK_CONFIGURE([], [], [stdout])
 # Note that the output may contain more defines and lines matching
 #   # 1 "conftest.c"
 # so delete everything before the interesting output.
-AT_CHECK([sed -n '/#define PACKAGE/,$p' stdout], [],
+AT_CHECK([sed -n 's/ *$//; /#define PACKAGE/,$p' stdout], [],
 [[#define PACKAGE_NAME "Hello"
 #define PACKAGE_TARNAME "hello"
 #define PACKAGE_VERSION "1.0"


hooks/post-receive
-- 
GNU Autoconf source repository



reply via email to

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