[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Relea
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-33-g030bc63 |
Date: |
Thu, 04 Sep 2008 20:39:24 +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=030bc6380cc8e0a77fe97357fa28e9c1052a1a7f
The branch, branch-1-10 has been updated
via 030bc6380cc8e0a77fe97357fa28e9c1052a1a7f (commit)
from 1e4958de3ebc23e4faee00ebea5b66802abe14b9 (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 030bc6380cc8e0a77fe97357fa28e9c1052a1a7f
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 | 6 ++++++
tests/output-order.test | 5 ++++-
2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 20808ad..d7f2252 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +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.
+
2008-08-31 Ralf Wildenhues <address@hidden>
Copyright year updates.
diff --git a/tests/output-order.test b/tests/output-order.test
index 620095d..de9539a 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-33-g030bc63,
Ralf Wildenhues <=