grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.10-3-g1de1d04


From: Jim Meyering
Subject: grep branch, master, updated. v2.10-3-g1de1d04
Date: Sun, 20 Nov 2011 13:45:58 +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  1de1d040273d4eae059ad6cd0feb696f86743b5f (commit)
      from  ea1a3cbdf3cb751d0e862b4dcdd8cf449d9d944f (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=1de1d040273d4eae059ad6cd0feb696f86743b5f


commit 1de1d040273d4eae059ad6cd0feb696f86743b5f
Author: Jim Meyering <address@hidden>
Date:   Sun Nov 20 14:30:12 2011 +0100

    tests: avoid unwarranted test failure on *BSD-based systems
    
    * tests/word-delim-multibyte (e_acute): Use a more portable
    representation of e-acute.  Reported by Bruno Haible.

diff --git a/tests/word-delim-multibyte b/tests/word-delim-multibyte
index 5add9c8..a6411af 100755
--- a/tests/word-delim-multibyte
+++ b/tests/word-delim-multibyte
@@ -5,12 +5,13 @@
 
 require_en_utf8_locale_
 
-echo 'é' > in || framework_failure_
+e_acute=$(printf '\303\251')
+echo "$e_acute" > in || framework_failure_
 LC_ALL=en_US.UTF-8
 export LC_ALL
 
 fail=0
-grep '\<é' in > out 2>err || fail=1
+grep '\<$e_acute' in > out 2>err || fail=1
 
 compare out in || fail=1
 compare err /dev/null || fail=1

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

Summary of changes:
 tests/word-delim-multibyte |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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