summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/testdata/testinput5
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2010-08-14 14:37:13 +0000
committerIlia Alshanetsky <iliaa@php.net>2010-08-14 14:37:13 +0000
commitc5602787fca62e64a63b99e7ae3f310f72e2cac9 (patch)
treec03f412a77986b5f66e76ca2a1155ba7efc511f0 /ext/pcre/pcrelib/testdata/testinput5
parentc1019643253d2d65d813358e1bc37ecf5dd365ed (diff)
downloadphp-git-c5602787fca62e64a63b99e7ae3f310f72e2cac9.tar.gz
MFH: Upgraded bundled PCRE to version 8.10.
Diffstat (limited to 'ext/pcre/pcrelib/testdata/testinput5')
-rw-r--r--ext/pcre/pcrelib/testdata/testinput549
1 files changed, 49 insertions, 0 deletions
diff --git a/ext/pcre/pcrelib/testdata/testinput5 b/ext/pcre/pcrelib/testdata/testinput5
index 68795e6095..5e200b3e31 100644
--- a/ext/pcre/pcrelib/testdata/testinput5
+++ b/ext/pcre/pcrelib/testdata/testinput5
@@ -745,4 +745,53 @@ can't tell the difference.) --/
/X\W{3}X/8
\PX
+/\h/SI
+
+/\h/SI8
+ ABC\x{09}
+ ABC\x{20}
+ ABC\x{a0}
+ ABC\x{1680}
+ ABC\x{180e}
+ ABC\x{2000}
+ ABC\x{202f}
+ ABC\x{205f}
+ ABC\x{3000}
+
+/\v/SI
+
+/\v/SI8
+ ABC\x{0a}
+ ABC\x{0b}
+ ABC\x{0c}
+ ABC\x{0d}
+ ABC\x{85}
+ ABC\x{2028}
+
+/\R/SI
+
+/\R/SI8
+
+/\h*A/SI8
+ CDBABC
+
+/\v+A/SI8
+
+/\s?xxx\s/8SI
+
+/\sxxx\s/8T1
+ AB\x{85}xxx\x{a0}XYZ
+ AB\x{a0}xxx\x{85}XYZ
+
+/\sxxx\s/I8ST1
+ AB\x{85}xxx\x{a0}XYZ
+ AB\x{a0}xxx\x{85}XYZ
+
+/\S \S/8T1
+ \x{a2} \x{84}
+
+/\S \S/I8ST1
+ \x{a2} \x{84}
+ A Z
+
/-- End of testinput5 --/