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 345ba869fa81b560172505fae12ff89b9e88b082 (commit)
from 7e110721f800b8b132086c652fff504935b7a36b (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=345ba869fa81b560172505fae12ff89b9e88b082
commit 345ba869fa81b560172505fae12ff89b9e88b082
Author: Paolo Bonzini <[email protected]>
Date: Wed Mar 24 10:31:40 2010 +0100
tests: fix char-class-multibyte
* tests/char-class-multibyte: Make it pass.
diff --git a/tests/char-class-multibyte b/tests/char-class-multibyte
index d77c6de..5183ad6 100644
--- a/tests/char-class-multibyte
+++ b/tests/char-class-multibyte
@@ -3,20 +3,20 @@
: ${srcdir=.}
. "$srcdir/init.sh"; path_prepend_ ../src
-printf 'Ã\n' > exp1 || framework_failure
+printf 'é\n' > exp1 || framework_failure
fail=0
for LOC in en_US.UTF-8 $LOCALE_FR_UTF8; do
out=out1-$LOC
- printf 'á\nç\nÃ\n' | LC_ALL=$LOC grep '[é]' > $out || fail=1
+ printf 'á\nç\né\n' | LC_ALL=$LOC grep '[é]' > $out || fail=1
compare $out exp1 || fail=1
done
-printf 'é\n' > exp2 || framework_failure
+printf 'Ã\n' > exp2 || framework_failure
for LOC in en_US.UTF-8 $LOCALE_FR_UTF8; do
out=out2-$LOC
- printf 'á\nç\né\n' | LC_ALL=$LOC grep '[Ã]' > $out || fail=1
+ printf 'Ã\nÃ\nÃ\n' | LC_ALL=$LOC grep '[Ã]' > $out || fail=1
compare $out exp2 || fail=1
done
-----------------------------------------------------------------------
Summary of changes:
tests/char-class-multibyte | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
grep