summaryrefslogtreecommitdiff
path: root/pcre/testdata/testinput6
diff options
context:
space:
mode:
Diffstat (limited to 'pcre/testdata/testinput6')
-rw-r--r--pcre/testdata/testinput651
1 files changed, 51 insertions, 0 deletions
diff --git a/pcre/testdata/testinput6 b/pcre/testdata/testinput6
index 02cef0d6f5d..aeb62a073fa 100644
--- a/pcre/testdata/testinput6
+++ b/pcre/testdata/testinput6
@@ -1502,4 +1502,55 @@
/\C\X*QT/8
Ӆ\x0aT
+/[\pS#moq]/
+ =
+
+/[[:punct:]]/8W
+ \xc2\xb4
+ \x{b4}
+
+/[[:^ascii:]]/8W
+ \x{100}
+ \x{200}
+ \x{300}
+ \x{37e}
+ a
+ 9
+ g
+
+/[[:^ascii:]\w]/8W
+ a
+ 9
+ g
+ \x{100}
+ \x{200}
+ \x{300}
+ \x{37e}
+
+/[\w[:^ascii:]]/8W
+ a
+ 9
+ g
+ \x{100}
+ \x{200}
+ \x{300}
+ \x{37e}
+
+/[^[:ascii:]\W]/8W
+ a
+ 9
+ g
+ \x{100}
+ \x{200}
+ \x{300}
+ \x{37e}
+
+/[[:^ascii:]a]/8W
+ a
+ 9
+ g
+ \x{100}
+ \x{200}
+ \x{37e}
+
/-- End of testinput6 --/