summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-04-08 12:26:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-04-08 12:26:19 (GMT)
commita46470f9963dd69ba76c63ef2fcb438022ae69bb (patch)
tree9da76e5e599eb2cf7dff5b5148d47992912683a2 /tests
parentb6e7e4e4283f3809245d72b487eb5cc65cc6e95b (diff)
parent78b187fe71dba0f3710be978050e08fde81efd85 (diff)
downloadtcl-a46470f9963dd69ba76c63ef2fcb438022ae69bb.zip
tcl-a46470f9963dd69ba76c63ef2fcb438022ae69bb.tar.gz
tcl-a46470f9963dd69ba76c63ef2fcb438022ae69bb.tar.bz2
Fix [8663689908d3304a74fee525cd04aa4162e86391|8663689908d3]: regexp \\w missing characters
Diffstat (limited to 'tests')
-rw-r--r--tests/utf.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utf.test b/tests/utf.test
index ceb1af7..a03dd6c 100644
--- a/tests/utf.test
+++ b/tests/utf.test
@@ -302,7 +302,7 @@ test utf-21.1 {TclUniCharIsAlnum} {
} {1}
test utf-21.2 {unicode alnum char in regc_locale.c} {
# this returns 1 with Unicode 7 compliance
- list [regexp {^[[:alnum:]]+$} \u1040\u021f\u0220] [regexp {^\w+$} \u1040\u021f\u0220]
+ list [regexp {^[[:alnum:]]+$} \u1040\u021f\u0220] [regexp {^\w+$} \u1040\u021f\u0220_\u203f\u2040\u2054\ufe33\ufe34\ufe4d\ufe4e\ufe4f\uff3f]
} {1 1}
test utf-21.3 {unicode print char in regc_locale.c} {
# this returns 1 with Unicode 7 compliance