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.63-234-


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.63-234-gaf73665
Date: Tue, 02 Dec 2008 18:22:22 +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=af7366502f5d298e63bc02ca4516186b8acf7f6c

The branch, master has been updated
       via  af7366502f5d298e63bc02ca4516186b8acf7f6c (commit)
      from  5857d07c984cfd57d83b3794ae833fa205cd4c21 (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 af7366502f5d298e63bc02ca4516186b8acf7f6c
Author: Eric Blake <address@hidden>
Date:   Tue Dec 2 11:15:55 2008 -0700

    Avoid MacOS readdir bug in testsuite.
    
    * tests/local.at (AC_STATE_SAVE): Avoid spurious failures due to
    duplicated ls entries.
    * THANKS: Update.
    Reported by Bruce Dugan and others.
    
    Signed-off-by: Eric Blake <address@hidden>

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

Summary of changes:
 ChangeLog      |    8 ++++++++
 THANKS         |    1 +
 tests/local.at |    4 +++-
 3 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2db458d..7ca53e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-12-02  Eric Blake  <address@hidden>
+
+       Avoid MacOS readdir bug in testsuite.
+       * tests/local.at (AC_STATE_SAVE): Avoid spurious failures due to
+       duplicated ls entries.
+       * THANKS: Update.
+       Reported by Bruce Dugan and others.
+
 2008-11-29  Ralf Wildenhues  <address@hidden>
 
        * lib/autotest/general.m4 (AT_JOB_FIFO_FD): Hide zsh 4.3.4
diff --git a/THANKS b/THANKS
index bd394e1..a3ae8c2 100644
--- a/THANKS
+++ b/THANKS
@@ -52,6 +52,7 @@ Brad Walker                 address@hidden
 Braden McDaniel             address@hidden
 Bram Moolenaar              address@hidden
 Brian Gough                 address@hidden
+Bruce Dugan                 address@hidden
 Bruce Korb                  address@hidden
 Bruce Lilly                 ?
 Bruno Haible                address@hidden
diff --git a/tests/local.at b/tests/local.at
index 041d103..2ec7bc5 100644
--- a/tests/local.at
+++ b/tests/local.at
@@ -197,9 +197,11 @@ m4_define([AT_CONFIGURE_AC],
 # confirm that no test modifies variables outside the Autoconf namespace or
 # leaves temporary files.  AT_CONFIG_CMP uses the variable dumps to confirm 
that
 # tests have the same side effects regardless of caching.
+# The sort -u is necessary, since MacOS 10.5 has a bug where readdir can
+# list a file multiple times in a rapidly changing directory.
 m4_defun([AC_STATE_SAVE],
 [(set) 2>&1 | sort >state-env.$][1
-ls -1 | sed '/^at-/d;/^state-/d;/^config\./d' | sort >state-ls.$][1
+ls -1 | sed '/^at-/d;/^state-/d;/^config\./d' | sort -u >state-ls.$][1
 ])# AC_STATE_SAVE
 ]])
 


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

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