grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.25-97-g0b7fae5


From: Jim Meyering
Subject: grep branch, master, updated. v2.25-97-g0b7fae5
Date: Sat, 24 Sep 2016 16:23:18 +0000 (UTC)

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  0b7fae5850db49a4238511d10a7f0ebb7067abaa (commit)
      from  eaa1541d8e714621abe5a8235f4a59cbf64b2d1f (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=0b7fae5850db49a4238511d10a7f0ebb7067abaa


commit 0b7fae5850db49a4238511d10a7f0ebb7067abaa
Author: Jim Meyering <address@hidden>
Date:   Fri Sep 23 23:02:31 2016 -0700

    tests: avoid erroneous failure of pcre-jitstack test
    
    On some systems (*BSD), 'ulimit -s unlimited' would fail, yet the
    test for that mistakenly masked the failure, so the following grep
    command ended up failing with a segfault.
    * tests/pcre-jitstack: Don't mask the ulimit failure.
    Reported privately by Nelson H. F. Beebe.
    https://bugs.gnu.org/24524

diff --git a/tests/pcre-jitstack b/tests/pcre-jitstack
index 7945dec..b473b12 100755
--- a/tests/pcre-jitstack
+++ b/tests/pcre-jitstack
@@ -48,7 +48,7 @@ if test $? != 1; then
 
     # Use ulimit to remove that limit, if possible.
     # If ulimit is not usable, just skip this test.
-    (ulimit -s unlimited; : ) || skip_ this shell lacks ulimit support
+    (ulimit -s unlimited) || skip_ this shell lacks ulimit support
 
     # Rerun that same test, but now with no limit on stack size:
     (ulimit -s unlimited;

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

Summary of changes:
 tests/pcre-jitstack |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
grep



reply via email to

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