summaryrefslogtreecommitdiff
path: root/testinput1
diff options
context:
space:
mode:
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 /