summaryrefslogtreecommitdiff
path: root/testdata/testinput1
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-10-08 15:06:46 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-10-08 15:06:46 +0000
commite53ac621ef11427dd1c9fd6def13349cc196fd8c (patch)
treeff26bfb4308c63ef4d02d4c25cfee2c55b25529f /testdata/testinput1
parent0277649fafae94e180c599aeb3592b77627d35b4 (diff)
downloadpcre-e53ac621ef11427dd1c9fd6def13349cc196fd8c.tar.gz
Update \8 and \9 handling to match most recent Perl.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1369 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput1')
-rw-r--r--testdata/testinput122
1 files changed, 15 insertions, 7 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index 07c5df6..550abc5 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -1483,14 +1483,19 @@
abc\100\x30
abc\100\060
abc\100\60
+
+/^A\8B\9C$/
+ A8B9C
+ *** Failers
+ A\08B\09C
+
+/^(A)(B)(C)(D)(E)(F)(G)(H)(I)\8\9$/
+ ABCDEFGHIHI
-/abc\81/
- abc\081
- abc\0\x38\x31
-
-/abc\91/
- abc\091
- abc\0\x39\x31
+/^[A\8B\9C]+$/
+ A8B9C
+ *** Failers
+ A8B9C\x00
/(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)\12\123/
abcdefghijkllS
@@ -5626,5 +5631,8 @@ AbcdCBefgBhiBqz
/^ (?:(?<A>A)|(?'B'B)(?<A>A)) (?('A')x) (?(<B>)y)$/xJ
Ax
BAxy
+
+/^A\xZ/
+ A\0Z
/-- End of testinput1 --/