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-6-gc


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.68-6-gc6b151d
Date: Tue, 12 Oct 2010 18:31:16 +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=c6b151d0e24f9670695ec6f3ef13f838ef9d05fc

The branch, master has been updated
       via  c6b151d0e24f9670695ec6f3ef13f838ef9d05fc (commit)
      from  2b0d95faef68d7ed7c08b0edb9ff1c38728376fa (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 c6b151d0e24f9670695ec6f3ef13f838ef9d05fc
Author: Ralf Wildenhues <address@hidden>
Date:   Tue Oct 12 20:29:58 2010 +0200

    tests: avoid AC_CACHE_CHECK test failure with dash.
    
    * tests/base.at (AC_CACHE_CHECK): Normalize configure exit
    status in presence of syntax error in sourced site file.
    Do not error out if configure is aborted at this point.
    Fixes testsuite failure with dash 0.5.5.1.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

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

Summary of changes:
 ChangeLog     |    8 ++++++++
 tests/base.at |    5 +++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 609846a..9217438 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-10-12  Ralf Wildenhues  <address@hidden>
+
+       tests: avoid AC_CACHE_CHECK test failure with dash.
+       * tests/base.at (AC_CACHE_CHECK): Normalize configure exit
+       status in presence of syntax error in sourced site file.
+       Do not error out if configure is aborted at this point.
+       Fixes testsuite failure with dash 0.5.5.1.
+
 2010-10-08  Eric Blake  <address@hidden>
 
        AS_LITERAL_IF: Treat raw = as literal again.
diff --git a/tests/base.at b/tests/base.at
index cf12099..0973fc4 100644
--- a/tests/base.at
+++ b/tests/base.at
@@ -493,8 +493,9 @@ AT_DATA([bad.site],
 [[fi
 ]])
 CONFIG_SITE=$PWD/bad.site
-AT_CHECK_CONFIGURE([], [1], [ignore], [stderr])
-AT_CHECK([grep 'failed to load site script' stderr], [], [ignore])
+AT_CHECK_CONFIGURE([ || exit 1], [1], [stdout], [stderr])
+AT_CHECK([grep 'failed to load site script' stderr], [], [ignore], [ignore],
+        [AT_CHECK([grep 'whether true' stdout], [1])])
 
 # However, a missing file is ignored.
 CONFIG_SITE=./no-such-file


hooks/post-receive
-- 
GNU Autoconf source repository



reply via email to

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