summaryrefslogtreecommitdiff
path: root/testdata/testinput18
blob: e31b96e6d645c1311ac48b5a96d08945c7ad33f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# This set of tests is run only with the 8-bit library. It tests the POSIX
# interface, which is supported only with the 8-bit library. This test should
# not be run with JIT (which is not available for the POSIX interface).
    
#forbid_utf
#pattern posix

# Test invalid options

/abc/auto_callout

/abc/
   abc\=find_limits

/abc/
  abc\=partial_hard

# Real tests

/abc/
    abc

/^abc|def/
    abcdef
    abcdef\=notbol

/.*((abc)$|(def))/
    defabc
    defabc\=noteol

/the quick brown fox/
    the quick brown fox
\= Expect no match
    The Quick Brown Fox

/the quick brown fox/i
    the quick brown fox
    The Quick Brown Fox

/(*LF)abc.def/
\= Expect no match
    abc\ndef

/(*LF)abc$/
    abc
    abc\n

/(abc)\2/

/(abc\1)/
\= Expect no match
    abc

/a*(b+)(z)(z)/
    aaaabbbbzzzz
    aaaabbbbzzzz\=ovector=0
    aaaabbbbzzzz\=ovector=1
    aaaabbbbzzzz\=ovector=2

/(*ANY)ab.cd/
    ab-cd
    ab=cd
\= Expect no match
    ab\ncd

/ab.cd/s
    ab-cd
    ab=cd
    ab\ncd

/a(b)c/posix_nosub
    abc

/a(?P<name>b)c/posix_nosub
    abc

/(a)\1/posix_nosub
    zaay

/a?|b?/
    abc
\= Expect no match
    ddd\=notempty

/\w+A/
   CDAAAAB

/\w+A/ungreedy
   CDAAAAB
   
/\Biss\B/I,aftertext
    Mississippi

/abc/\

"(?(?C)"

"(?(?C))"

/abcd/substitute_extended

/\[A]{1000000}**/expand,regerror_buffsize=31

/\[A]{1000000}**/expand,regerror_buffsize=32

# End of testdata/testinput18