summaryrefslogtreecommitdiff
path: root/testdata/testoutput5
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-11-20 16:55:36 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-11-20 16:55:36 +0000
commitef0ca2ce831af44736a9e7f31ae56252f115b37e (patch)
treecc19640d7604cc2e76d04f11c21694d66deeeb1a /testdata/testoutput5
parent6774b80a04fd9a65c14ac6116cbe0f41a5f780a2 (diff)
downloadpcre2-ef0ca2ce831af44736a9e7f31ae56252f115b37e.tar.gz
Fix wide character problem with negated POSIX ascii and xdigit class items.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@443 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testoutput5')
-rw-r--r--testdata/testoutput549
1 files changed, 49 insertions, 0 deletions
diff --git a/testdata/testoutput5 b/testdata/testoutput5
index 7eb9df3..9879231 100644
--- a/testdata/testoutput5
+++ b/testdata/testoutput5
@@ -4097,4 +4097,53 @@ Subject length lower bound = 0
End
------------------------------------------------------------------
+/[[:^ascii:]]/utf,ucp,bincode
+------------------------------------------------------------------
+ Bra
+ [\x80-\xff] (neg)
+ Ket
+ End
+------------------------------------------------------------------
+
+/[[:^ascii:]\w]/utf,ucp,bincode
+------------------------------------------------------------------
+ Bra
+ [\x80-\xff\p{Xwd}\x{100}-\x{10ffff}]
+ Ket
+ End
+------------------------------------------------------------------
+
+/[\w[:^ascii:]]/utf,ucp,bincode
+------------------------------------------------------------------
+ Bra
+ [\x80-\xff\p{Xwd}\x{100}-\x{10ffff}]
+ Ket
+ End
+------------------------------------------------------------------
+
+/[^[:ascii:]\W]/utf,ucp,bincode
+------------------------------------------------------------------
+ Bra
+ [^\x00-\x7f\P{Xwd}]
+ Ket
+ End
+------------------------------------------------------------------
+ \x{de}
+ 0: \x{de}
+ \x{200}
+ 0: \x{200}
+\= Expect no match
+ \x{300}
+No match
+ \x{37e}
+No match
+
+/[[:^ascii:]a]/utf,ucp,bincode
+------------------------------------------------------------------
+ Bra
+ [a\x80-\xff] (neg)
+ Ket
+ End
+------------------------------------------------------------------
+
# End of testinput5