summaryrefslogtreecommitdiff
path: root/tests/case-fold-titlecase
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-02-28 22:46:02 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2014-02-28 22:47:43 -0800
commitc50283a3a8d15d382691c447c3a1e1fde1c548fc (patch)
tree02e53cfc4f666aa281177d58693c189e79959c12 /tests/case-fold-titlecase
parentcf1c98cca8844f851596dc03a9c4d6eebcf44bf2 (diff)
downloadgrep-c50283a3a8d15d382691c447c3a1e1fde1c548fc.tar.gz
grep: fix bugs with -i and titlecase
* NEWS: Document this. * src/dfa.c (setbit_wc): Simplify. (setbit_c): Remove; no longer used. (setbit_case_fold_c, parse_bracket_exp, atom): Don't mishandle titlecase. For 'atom', this removes the need for the refactoring of Bug#16729. (lex): Use the slower approach only for letters that have a differing case. * tests/case-fold-titlecase: New file. * tests/Makefile.am (TESTS): Add it.
Diffstat (limited to 'tests/case-fold-titlecase')
-rwxr-xr-xtests/case-fold-titlecase41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/case-fold-titlecase b/tests/case-fold-titlecase
new file mode 100755
index 00000000..0ece5c88
--- /dev/null
+++ b/tests/case-fold-titlecase
@@ -0,0 +1,41 @@
+#!/bin/sh
+# Check that case folding works even with titlecase characters.
+
+# Copyright 2014 Free Software Foundation, Inc.
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+. "${srcdir=.}/init.sh"; path_prepend_ ../src
+
+require_en_utf8_locale_
+require_compiled_in_MB_support
+LC_ALL=en_US.UTF-8
+export LC_ALL
+
+fail=0
+
+LJ='\307\207' # U+01C7 LATIN CAPITAL LETTER LJ
+Lj='\307\210' # U+01C8 LATIN CAPITAL LETTER L WITH SMALL LETTER J
+lj='\307\211' # U+01C9 LATIN SMALL LETTER LJ
+pattern=$(printf "$Lj\n") || framework_failure_
+printf "$lj$lj\n$Lj$Lj\n$LJ$LJ\n" >in || framework_failure_
+
+grep -i "$pattern" in >out || fail=1
+compare in out || fail=1
+
+pattern="($pattern)\\1"
+grep -Ei "$pattern" in >out || fail=1
+compare in out || fail=1
+
+Exit $fail