summaryrefslogtreecommitdiff
path: root/testinput2
diff options
context:
space:
mode:
Diffstat (limited to 'testinput2')
-rw-r--r--testinput229
1 files changed, 29 insertions, 0 deletions
diff --git a/testinput2 b/testinput2
index e293aef..e922811 100644
--- a/testinput2
+++ b/testinput2
@@ -38,6 +38,8 @@
/ab\gdef/X
+/(?X)ab\gdef/X
+
/x{5,4}/
/z{65536}/
@@ -146,9 +148,15 @@
".*/\Xfoo"X
/this/is/a/very/long/line/in/deed/with/very/many/slashes/in/it/you/see/
+"(?X).*/\Xfoo"
+ /this/is/a/very/long/line/in/deed/with/very/many/slashes/in/it/you/see/
+
".*/\Xfoo"X
/this/is/a/very/long/line/in/deed/with/very/many/slashes/in/and/foo
+"(?X).*/\Xfoo"
+ /this/is/a/very/long/line/in/deed/with/very/many/slashes/in/and/foo
+
/(\.\d\d[1-9]?)\d+/
1.230003938
1.875000282
@@ -287,4 +295,25 @@
/((a|b|c)*)*/
+/<.*>/
+ abc<def>ghi<klm>nop
+
+/<.*?>/
+ abc<def>ghi<klm>nop
+
+/<.*>/U
+ abc<def>ghi<klm>nop
+
+/<.*>(?U)/
+ abc<def>ghi<klm>nop
+
+/<.*?>/U
+ abc<def>ghi<klm>nop
+
+/={3,}/U
+ abc========def
+
+/(?U)={3,}?/
+ abc========def
+
/ End of test input /