grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.12-13-g0da5dfc


From: Jim Meyering
Subject: grep branch, master, updated. v2.12-13-g0da5dfc
Date: Wed, 16 May 2012 05:48:43 +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  0da5dfc5bf682cebcb831d7f740ff58629a827e7 (commit)
      from  582cdfacf297181c2c5ffec83fd8a3c0f6562fc6 (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=0da5dfc5bf682cebcb831d7f740ff58629a827e7


commit 0da5dfc5bf682cebcb831d7f740ff58629a827e7
Author: Jim Meyering <address@hidden>
Date:   Tue May 15 19:12:35 2012 +0200

    maint: avoid nit-picky syntax-check test failure; tweak big-hole test
    
    * NEWS: Restore deleted newline in "old" NEWS, to fix a syntax-check
    test failure.
    * tests/big-hole: Use awk, rather than a shell loop: saves 3000 lines
    of verbose shell output in the .log file.

diff --git a/NEWS b/NEWS
index f515e84..6926276 100644
--- a/NEWS
+++ b/NEWS
@@ -19,6 +19,7 @@ GNU grep NEWS                                    -*- outline 
-*-
   Bootstrapping with Makefile.boot has been broken since grep 2.6,
   and was removed.
 
+
 * Noteworthy changes in release 2.12 (2012-04-23) [stable]
 
 ** Bug fixes
@@ -50,6 +51,7 @@ GNU grep NEWS                                    -*- outline 
-*-
   use -R if you prefer the old behavior of following all symlinks and
   defaulting to reading all devices.
 
+
 * Noteworthy changes in release 2.11 (2012-03-02) [stable]
 
 ** Bug fixes
diff --git a/tests/big-hole b/tests/big-hole
index 47e36e1..20ade97 100755
--- a/tests/big-hole
+++ b/tests/big-hole
@@ -13,16 +13,8 @@ fi
 
 # Create a file that starts with at least a buffer's worth of text,
 # but has a big hole later.
-ten='1 2 3 4 5 6 7 8 9 10'
-x='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
-(for i in $ten; do
-   for j in $ten; do
-     for k in $ten; do
-       echo $x
-     done
-   done
- done
- echo x | dd bs=1024k seek=8000000
+(${AWK-awk} 'BEGIN{ for (i=0;i<1000;i++) printf "%080d\n", 0 }' < /dev/null
+  echo x | dd bs=1024k seek=8000000
 ) >8T-or-so || skip_ 'cannot create big sparse file'
 
 grep --binary-file=without-match x 8T-or-so >/dev/null

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

Summary of changes:
 NEWS           |    2 ++
 tests/big-hole |   12 ++----------
 2 files changed, 4 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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