grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.10-72-ge1ee9d9


From: Paul Eggert
Subject: grep branch, master, updated. v2.10-72-ge1ee9d9
Date: Wed, 08 Feb 2012 06:17:42 +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 "grep".

The branch, master has been updated
       via  e1ee9d96cc24a865016050aaae34178aa85f2437 (commit)
      from  3ade04b83128c0b0edbb17a83e98cadaf03b4fa4 (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 -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=e1ee9d96cc24a865016050aaae34178aa85f2437


commit e1ee9d96cc24a865016050aaae34178aa85f2437
Author: Paul Eggert <address@hidden>
Date:   Tue Feb 7 22:16:32 2012 -0800

    tests: work even if SIGPIPE is ignored
    
    * tests/epipe: Do not infinite-loop if SIGPIPE is already ignored.
    It could be that the invoker of 'make check' ignores SIGPIPE,
    for example.

diff --git a/tests/epipe b/tests/epipe
index 336d994..f9cb3f6 100755
--- a/tests/epipe
+++ b/tests/epipe
@@ -6,7 +6,7 @@
 
 if
    (
-     while :; do echo x; done |
+     (trap - PIPE; while echo x; do :; done) 3>&- |
      (trap '' PIPE; exec grep x 2>&3) |
      :
    ) 3>&1 | (

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

Summary of changes:
 tests/epipe |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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