summaryrefslogtreecommitdiff
path: root/testinput1
diff options
context:
space:
mode:
authornigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:39:05 +0000
committernigel <nigel@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-02-24 21:39:05 +0000
commit8413b86222848f277386e72706ca548a37dbc6ca (patch)
treeaa68b52aa527385811d5e4af091c59609cc8fa03 /testinput1
parent4864ac99ba4c4395fd8dc157ec734e228c780eb4 (diff)
downloadpcre-8413b86222848f277386e72706ca548a37dbc6ca.tar.gz
Load pcre-2.06 into code/trunk.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@35 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testinput1')
-rw-r--r--testinput142
1 files changed, 42 insertions, 0 deletions
diff --git a/testinput1 b/testinput1
index 2d0116c..511a706 100644
--- a/testinput1
+++ b/testinput1
@@ -1813,4 +1813,46 @@
*** Failers
abcde\nBar
+/^.*B/
+ **** Failers
+ abc\nB
+
+/(?s)^.*B/
+ abc\nB
+
+/(?m)^.*B/
+ abc\nB
+
+/(?ms)^.*B/
+ abc\nB
+
+/(?ms)^B/
+ abc\nB
+
+/(?s)B$/
+ B\n
+
+/^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/
+ 123456654321
+
+/^\d\d\d\d\d\d\d\d\d\d\d\d/
+ 123456654321
+
+/^[\d][\d][\d][\d][\d][\d][\d][\d][\d][\d][\d][\d]/
+ 123456654321
+
+/^[abc]{12}/
+ abcabcabcabc
+
+/^[a-c]{12}/
+ abcabcabcabc
+
+/^(a|b|c){12}/
+ abcabcabcabc
+
+/^[abcdefghijklmnopqrstuvwxy0123456789]/
+ n
+ *** Failers
+ z
+
/ End of test input /