summaryrefslogtreecommitdiff
path: root/testdata/testoutputEBC
blob: 72b6fa3edfd3ad0e62eec0f173f0b9c0063cce8f (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/-- This is a specialized test for checking, when PCRE is compiled with the
EBCDIC option but in an ASCII environment, that newline and white space
functionality is working. It catches cases where explicit values such as 0x0a
have been used instead of names like CHAR_LF. Needless to say, it is not a
genuine EBCDIC test! In patterns, alphabetic characters that follow a backslash
must be in EBCDIC code. In data, newlines and other spacing characters must be
in EBCDIC, but can be specified as escapes. --/

/-- Test default newline and variations --/

/^A/m
    ABC
 0: A
    12\x15ABC
 0: A

/^A/m<any>
    12\x15ABC
 0: A
    12\x0dABC
 0: A
    12\x0d\x15ABC
 0: A
    12\x25ABC
 0: A

/^A/m<anycrlf>
    12\x15ABC
 0: A
    12\x0dABC
 0: A
    12\x0d\x15ABC
 0: A
    ** Fail
No match
    12\x25ABC
No match

/-- Test \h --/

/^A\�/
    A B
 0: A\x20
    A\x41B
 0: AA

/-- Test \H --/

/^A\�/
    AB
 0: AB
    A\x42B
 0: AB
    ** Fail
No match
    A B
No match
    A\x41B
No match

/-- Test \R --/

/^A\�/
    A\x15B
 0: A\x15
    A\x0dB
 0: A\x0d
    A\x25B
 0: A\x25
    A\x0bB
 0: A\x0b
    A\x0cB
 0: A\x0c
    ** Fail
No match
    A B
No match

/-- Test \v --/

/^A\�/
    A\x15B
 0: A\x15
    A\x0dB
 0: A\x0d
    A\x25B
 0: A\x25
    A\x0bB
 0: A\x0b
    A\x0cB
 0: A\x0c
    ** Fail
No match
    A B
No match

/-- Test \V --/

/^A\�/
    A B
 0: A\x20
    ** Fail
No match
    A\x15B
No match
    A\x0dB
No match
    A\x25B
No match
    A\x0bB
No match
    A\x0cB
No match
    
/-- For repeated items, use an atomic group so that the output is the same
for DFA matching (otherwise it may show multiple matches). --/ 

/-- Test \h+ --/

/^A(?>\�+)/
    A B
 0: A\x20

/-- Test \H+ --/

/^A(?>\�+)/
    AB
 0: AB
    ** Fail
No match
    A B
No match

/-- Test \R+ --/

/^A(?>\�+)/
    A\x15B
 0: A\x15
    A\x0dB
 0: A\x0d
    A\x25B
 0: A\x25
    A\x0bB
 0: A\x0b
    A\x0cB
 0: A\x0c
    ** Fail
No match
    A B
No match

/-- Test \v+ --/

/^A(?>\�+)/
    A\x15B
 0: A\x15
    A\x0dB
 0: A\x0d
    A\x25B
 0: A\x25
    A\x0bB
 0: A\x0b
    A\x0cB
 0: A\x0c
    ** Fail
No match
    A B
No match

/-- Test \V+ --/

/^A(?>\�+)/
    A B
 0: A\x20B
    ** Fail
No match
    A\x15B
No match
    A\x0dB
No match
    A\x25B
No match
    A\x0bB
No match
    A\x0cB
No match

/-- End --/