automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-


From: Ralf Wildenhues
Subject: [Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-168-gc327d0d
Date: Thu, 04 Sep 2008 20:39:25 +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 Automake".

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

The branch, master has been updated
       via  c327d0d37c64dd126c71d3ffbf7eb8a3fe00c8c1 (commit)
      from  1fb0f1cec8fec274adf8544879e7cab75e89adbc (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 c327d0d37c64dd126c71d3ffbf7eb8a3fe00c8c1
Author: Ralf Wildenhues <address@hidden>
Date:   Thu Sep 4 22:13:36 2008 +0200

    Avoid Heisenbug with verbose testing on HP-UX.
    
    * tests/output-order.test: Remove spurious redirection line
    from output for comparison.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

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

Summary of changes:
 ChangeLog               |    4 ++++
 tests/output-order.test |    5 ++++-
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ae1310b..84195e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2008-09-04  Ralf Wildenhues  <address@hidden>
 
+       Avoid Heisenbug with verbose testing on HP-UX.
+       * tests/output-order.test: Remove spurious redirection line
+       from output for comparison.
+
        For all possibly-relative subdirs, use $(am__cd).
        Up to now, $(am__cd) was only used within backquotes, to avoid
        extraneous output.  This patch also uses it for every `cd' to a
diff --git a/tests/output-order.test b/tests/output-order.test
index e55ef36..a2e65a7 100755
--- a/tests/output-order.test
+++ b/tests/output-order.test
@@ -48,5 +48,8 @@ cat stderr >&2
 
 for i in 1 2 3 4 5 6; do
   rm -f missing install-sh INSTALL COPYING
-  $AUTOMAKE --add-missing --copy 2>&1 >/dev/null | diff - stderr
+  # The grep prevents a Heisenbug with the HP-UX shell and VERBOSE=yes.
+  $AUTOMAKE --add-missing --copy 2>&1 >/dev/null |
+  grep -v /dev/null |
+  diff - stderr
 done


hooks/post-receive
--
GNU Automake




reply via email to

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