Lines Matching refs:quit

16 if grep(txt,"vide")<>[] then bugmes();quit;end
17 if grep([],"vide")<>[] then bugmes();quit;end
18 if grep("","vide")<>[] then bugmes();quit;end
19 e="";if execstr("grep(txt,e)","errcatch")==0 then bugmes();quit;end
21 if grep(txt,"strings")<>1 then bugmes();quit;end
22 if or(grep(txt,["strings" "Strings"])<>[1 3]) then bugmes();quit;end
25 if or(w<>[1 2])|or(r<>[1 3]) then bugmes();quit;end
27 e=["strings" ""]; if execstr("[r,w]=grep(txt,e)","errcatch")==0 then bugmes();quit;end;
29 if grep([]," ") <> [] then bugmes();quit;end
31 if grep("AB",["A","B"]) <> 1 then bugmes();quit;end
33 if grep("AB",["A";"B"]) <> 1 then bugmes();quit;end
35 if grep(["AB","B"],["A";"B"]) <> 1 then bugmes();quit;end
37 if grep(["AB","B"],["A";"B";"C"]) <> 1 then bugmes();quit;end
43 if grep(txt,"scilab") <> [] then bugmes();quit;end
46 if grep(txt,"Scilab") <> ref then bugmes();quit;end
48 … ,"/abc/" ,"r") <> 1 then bugmes();quit;end
49 … ,"/abc/" ,"r") <> [] then bugmes();quit;end
50 … ,"/abc/" ,"r") <> [] then bugmes();quit;end
51 … ,"/abc/" ,"r") <> [] then bugmes();quit;end
52 … ,"/abc/" ,"r") <> 1 then bugmes();quit;end
53 … ,"/abc/" ,"r") <> 1 then bugmes();quit;end
54 … ,"/ab*c/" ,"r") <> 1 then bugmes();quit;end
55 … ,"/ab*bc/" ,"r") <> 1 then bugmes();quit;end
56 … ,"/ab*bc/" ,"r") <> 1 then bugmes();quit;end
57 … ,"/ab*bc/" ,"r") <> 1 then bugmes();quit;end
58 … ,"/.{1}/" ,"r") <> 1 then bugmes();quit;end
59 … ,"/.{3,4}/" ,"r") <> 1 then bugmes();quit;end
60 … ,"/ab{0,}bc/" ,"r") <> 1 then bugmes();quit;end
61 … ,"/ab+bc/" ,"r") <> 1 then bugmes();quit;end
62 … ,"/ab+bc/" ,"r") <> [] then bugmes();quit;end
63 … ,"/ab+bc/" ,"r") <> [] then bugmes();quit;end
64 … ,"/ab{1,}bc/" ,"r") <> [] then bugmes();quit;end
65 … ,"/ab+bc/" ,"r") <> 1 then bugmes();quit;end
66 … ,"/ab{1,}bc/" ,"r") <> 1 then bugmes();quit;end
67 … ,"/ab{1,3}bc/" ,"r") <> 1 then bugmes();quit;end
68 … ,"/ab{3,4}bc/" ,"r") <> 1 then bugmes();quit;end
69 … ,"/ab{4,5}bc/" ,"r") <> [] then bugmes();quit;end
70 … ,"/ab?bc/" ,"r") <> 1 then bugmes();quit;end
71 … ,"/ab?bc/" ,"r") <> 1 then bugmes();quit;end
72 … ,"/ab{0,1}bc/" ,"r") <> 1 then bugmes();quit;end
73 … ,"/ab?bc/" ,"r") <> [] then bugmes();quit;end
74 … ,"/ab?c/" ,"r") <> 1 then bugmes();quit;end
75 … ,"/ab{0,1}c/" ,"r") <> 1 then bugmes();quit;end
76 … ,"/^abc$/" ,"r") <> 1 then bugmes();quit;end
77 … ,"/^abc$/" ,"r") <> [] then bugmes();quit;end
78 … ,"/^abc/" ,"r") <> 1 then bugmes();quit;end
79 … ,"/^abc$/" ,"r") <> [] then bugmes();quit;end
80 … ,"/abc$/" ,"r") <> 1 then bugmes();quit;end
81 … ,"/abc$/" ,"r") <> [] then bugmes();quit;end
82 … ,"/^/" ,"r") <> 1 then bugmes();quit;end
83 … ,"/$/" ,"r") <> 1 then bugmes();quit;end
84 … ,"/a.c/" ,"r") <> 1 then bugmes();quit;end
85 … ,"/a.c/" ,"r") <> 1 then bugmes();quit;end
86 … ,"/a.*c/" ,"r") <> 1 then bugmes();quit;end
87 … ,"/a.*c/" ,"r") <> [] then bugmes();quit;end
88 … ,"/a[bc]d/" ,"r") <> [] then bugmes();quit;end
89 … ,"/a[bc]d/" ,"r") <> 1 then bugmes();quit;end
90 … ,"/a[b-d]e/" ,"r") <> [] then bugmes();quit;end
91 … ,"/a[b-d]e/" ,"r") <> 1 then bugmes();quit;end
92 … ,"/a[b-d]/" ,"r") <> 1 then bugmes();quit;end
93 … ,"/a[-b]/" ,"r") <> 1 then bugmes();quit;end
94 … ,"/a[b-]/" ,"r") <> 1 then bugmes();quit;end
95 … ,"/a]/" ,"r") <> 1 then bugmes();quit;end
96 … ,"/a[]]b/" ,"r") <> 1 then bugmes();quit;end
97 … ,"/a[^bc]d/" ,"r") <> 1 then bugmes();quit;end
98 … ,"/a[^bc]d/" ,"r") <> [] then bugmes();quit;end
99 … ,"/a[^-b]c/" ,"r") <> 1 then bugmes();quit;end
100 … ,"/a[^-b]c/" ,"r") <> [] then bugmes();quit;end
101 … ,"/a[^]b]c/" ,"r") <> [] then bugmes();quit;end
102 … ,"/a[^]b]c/" ,"r") <> 1 then bugmes();quit;end
103 … ,"/\ba\b/" ,"r") <> 1 then bugmes();quit;end
104 … ,"/\ba\b/" ,"r") <> 1 then bugmes();quit;end
105 … ,"/\ba\b/" ,"r") <> 1 then bugmes();quit;end
106 … ,"/\by\b/" ,"r") <> [] then bugmes();quit;end
107 … ,"/\by\b/" ,"r") <> [] then bugmes();quit;end
108 … ,"/\by\b/" ,"r") <> [] then bugmes();quit;end
109 … ,"/\Ba\B/" ,"r") <> [] then bugmes();quit;end
110 … ,"/\Ba\B/" ,"r") <> [] then bugmes();quit;end
111 … ,"/\Ba\B/" ,"r") <> [] then bugmes();quit;end
112 … ,"/\By\b/" ,"r") <> 1 then bugmes();quit;end
113 … ,"/\By\b/" ,"r") <> 1 then bugmes();quit;end
114 … ,"/\by\B/" ,"r") <> 1 then bugmes();quit;end
115 … ,"/\By\B/" ,"r") <> 1 then bugmes();quit;end
116 … ,"/\w/" ,"r") <> 1 then bugmes();quit;end
117 … ,"/\w/" ,"r") <> [] then bugmes();quit;end
118 … ,"/\W/" ,"r") <> [] then bugmes();quit;end
119 … ,"/\W/" ,"r") <> 1 then bugmes();quit;end
120 … ,"/a\sb/" ,"r") <> 1 then bugmes();quit;end
121 … ,"/a\sb/" ,"r") <> [] then bugmes();quit;end
122 … ,"/a\Sb/" ,"r") <> [] then bugmes();quit;end
123 … ,"/a\Sb/" ,"r") <> 1 then bugmes();quit;end
124 … ,"/\d/" ,"r") <> 1 then bugmes();quit;end
125 … ,"/\d/" ,"r") <> [] then bugmes();quit;end
126 … ,"/\D/" ,"r") <> [] then bugmes();quit;end
127 … ,"/\D/" ,"r") <> 1 then bugmes();quit;end
128 … ,"/[\w]/" ,"r") <> 1 then bugmes();quit;end
129 … ,"/[\w]/" ,"r") <> [] then bugmes();quit;end
130 … ,"/[\W]/" ,"r") <> [] then bugmes();quit;end
131 … ,"/[\W]/" ,"r") <> 1 then bugmes();quit;end
132 … ,"/a[\s]b/" ,"r") <> 1 then bugmes();quit;end
133 … ,"/a[\s]b/" ,"r") <> [] then bugmes();quit;end
134 … ,"/a[\S]b/" ,"r") <> [] then bugmes();quit;end
135 … ,"/a[\S]b/" ,"r") <> 1 then bugmes();quit;end
136 … ,"/[\d]/" ,"r") <> 1 then bugmes();quit;end
137 … ,"/[\d]/" ,"r") <> [] then bugmes();quit;end
138 … ,"/[\D]/" ,"r") <> [] then bugmes();quit;end
139 … ,"/[\D]/" ,"r") <> 1 then bugmes();quit;end
140 … ,"/ab|cd/" ,"r") <> 1 then bugmes();quit;end
141 … ,"/ab|cd/" ,"r") <> 1 then bugmes();quit;end
142 … ,"/$b/" ,"r") <> [] then bugmes();quit;end
143 … ,"/a\(*b/" ,"r") <> 1 then bugmes();quit;end
144 … ,"/a\(*b/" ,"r") <> 1 then bugmes();quit;end
145 … ,"/a+b+c/" ,"r") <> 1 then bugmes();quit;end
146 … ,"/a{1,}b{1,}c/" ,"r") <> 1 then bugmes();quit;end
147 … ,"/a.+?c/" ,"r") <> 1 then bugmes();quit;end
148 … ,"/[^ab]*/" ,"r") <> 1 then bugmes();quit;end
149 … ,"/abc/" ,"r") <> [] then bugmes();quit;end
150 … ,"/a+/" ,"r") <> [] then bugmes();quit;end
151 … ,"/a|b|c|d|e/" ,"r") <> 1 then bugmes();quit;end
152 … ,"/abcd*efg/" ,"r") <> 1 then bugmes();quit;end
153 … ,"/ab*/" ,"r") <> 1 then bugmes();quit;end
154 … ,"/ab*/" ,"r") <> 1 then bugmes();quit;end
155 … ,"/[abhgefdc]ij/" ,"r") <> 1 then bugmes();quit;end
156 … ,"/^(ab|cd)e/" ,"r") <> [] then bugmes();quit;end
157 … ,"/a[bcd]*dcdcde/" ,"r") <> 1 then bugmes();quit;end
158 … ,"/a[bcd]+dcdcde/" ,"r") <> [] then bugmes();quit;end
159 … ,"/[a-zA-Z_][a-zA-Z0-9_]*/" ,"r") <> 1 then bugmes();quit;end
160 … ,"/(bc+d$|ef*g.|h?i(j|k))/" ,"r") <> [] then bugmes();quit;end
161 … ,"/(bc+d$|ef*g.|h?i(j|k))/" ,"r") <> [] then bugmes();quit;end
162 … ,"/((((((((((a))))))))))\10/" ,"r") <> 1 then bugmes();quit;end
163 … ,"/((((((((((a))))))))))\041/" ,"r") <> [] then bugmes();quit;end
164 … ,"/((((((((((a))))))))))\041/" ,"r") <> 1 then bugmes();quit;end
165 … ,"/(((((((((a)))))))))/" ,"r") <> 1 then bugmes();quit;end
166 … ,"/multiple words of text/" ,"r") <> [] then bugmes();quit;end
167 …h" ,"/multiple words/" ,"r") <> 1 then bugmes();quit;end
168 … ,"/[k]/" ,"r") <> [] then bugmes();quit;end
169 … ,"/a[-]?c/" ,"r") <> 1 then bugmes();quit;end
170 … ,"/(a)|\1/" ,"r") <> 1 then bugmes();quit;end
171 … ,"/(a)|\1/" ,"r") <> [] then bugmes();quit;end
172 … ,"/((\3|b)\2(a)x)+/" ,"r") <> [] then bugmes();quit;end
173 … ,"/abc/i" ,"r") <> 1 then bugmes();quit;end
174 … ,"/abc/i" ,"r") <> [] then bugmes();quit;end
175 … ,"/abc/i" ,"r") <> [] then bugmes();quit;end
176 … ,"/abc/i" ,"r") <> [] then bugmes();quit;end
177 … ,"/abc/i" ,"r") <> 1 then bugmes();quit;end
178 … ,"/abc/i" ,"r") <> 1 then bugmes();quit;end
179 … ,"/ab*c/i" ,"r") <> 1 then bugmes();quit;end
180 … ,"/ab*bc/i" ,"r") <> 1 then bugmes();quit;end
181 … ,"/ab*bc/i" ,"r") <> 1 then bugmes();quit;end
182 … ,"/ab*?bc/i" ,"r") <> 1 then bugmes();quit;end
183 … ,"/ab{0,}?bc/i" ,"r") <> 1 then bugmes();quit;end
184 … ,"/ab+?bc/i" ,"r") <> 1 then bugmes();quit;end
185 … ,"/ab+bc/i" ,"r") <> [] then bugmes();quit;end
186 … ,"/ab+bc/i" ,"r") <> [] then bugmes();quit;end
187 … ,"/ab{1,}bc/i" ,"r") <> [] then bugmes();quit;end
188 … ,"/ab+bc/i" ,"r") <> 1 then bugmes();quit;end
189 … ,"/ab{1,}?bc/i" ,"r") <> 1 then bugmes();quit;end
190 … ,"/ab{1,3}?bc/i" ,"r") <> 1 then bugmes();quit;end
191 … ,"/ab{3,4}?bc/i" ,"r") <> 1 then bugmes();quit;end
192 … ,"/ab{4,5}?bc/i" ,"r") <> [] then bugmes();quit;end
193 … ,"/ab??bc/i" ,"r") <> 1 then bugmes();quit;end
194 … ,"/ab??bc/i" ,"r") <> 1 then bugmes();quit;end
195 … ,"/ab{0,1}?bc/i" ,"r") <> 1 then bugmes();quit;end
196 … ,"/ab??bc/i" ,"r") <> [] then bugmes();quit;end
197 … ,"/ab??c/i" ,"r") <> 1 then bugmes();quit;end
198 … ,"/ab{0,1}?c/i" ,"r") <> 1 then bugmes();quit;end
199 … ,"/^abc$/i" ,"r") <> 1 then bugmes();quit;end
200 … ,"/^abc$/i" ,"r") <> [] then bugmes();quit;end
201 … ,"/^abc/i" ,"r") <> 1 then bugmes();quit;end
202 … ,"/^abc$/i" ,"r") <> [] then bugmes();quit;end
203 … ,"/abc$/i" ,"r") <> 1 then bugmes();quit;end
204 … ,"/^/i" ,"r") <> 1 then bugmes();quit;end
205 … ,"/$/i" ,"r") <> 1 then bugmes();quit;end
206 … ,"/a.c/i" ,"r") <> 1 then bugmes();quit;end
207 … ,"/a.c/i" ,"r") <> 1 then bugmes();quit;end
208 … ,"/a.*?c/i" ,"r") <> 1 then bugmes();quit;end
209 … ,"/a.*c/i" ,"r") <> [] then bugmes();quit;end
210 … ,"/a[bc]d/i" ,"r") <> [] then bugmes();quit;end
211 … ,"/a[bc]d/i" ,"r") <> 1 then bugmes();quit;end
212 … ,"/a[b-d]e/i" ,"r") <> [] then bugmes();quit;end
213 … ,"/a[b-d]e/i" ,"r") <> 1 then bugmes();quit;end
214 … ,"/a[b-d]/i" ,"r") <> 1 then bugmes();quit;end
215 … ,"/a[-b]/i" ,"r") <> 1 then bugmes();quit;end
216 … ,"/a[b-]/i" ,"r") <> 1 then bugmes();quit;end
217 … ,"/a]/i" ,"r") <> 1 then bugmes();quit;end
218 … ,"/a[]]b/i" ,"r") <> 1 then bugmes();quit;end
219 … ,"/a[^bc]d/i" ,"r") <> 1 then bugmes();quit;end
220 … ,"/a[^bc]d/i" ,"r") <> [] then bugmes();quit;end
221 … ,"/a[^-b]c/i" ,"r") <> 1 then bugmes();quit;end
222 … ,"/a[^-b]c/i" ,"r") <> [] then bugmes();quit;end
223 … ,"/a[^]b]c/i" ,"r") <> [] then bugmes();quit;end
224 … ,"/a[^]b]c/i" ,"r") <> 1 then bugmes();quit;end
225 … ,"/ab|cd/i" ,"r") <> 1 then bugmes();quit;end
226 … ,"/ab|cd/i" ,"r") <> 1 then bugmes();quit;end
227 … ,"/$b/i" ,"r") <> [] then bugmes();quit;end
228 … ,"/a\(*b/i" ,"r") <> 1 then bugmes();quit;end
229 … ,"/a\(*b/i" ,"r") <> 1 then bugmes();quit;end
230 … ,"/a+b+c/i" ,"r") <> 1 then bugmes();quit;end
231 … ,"/a{1,}b{1,}c/i" ,"r") <> 1 then bugmes();quit;end
232 … ,"/a.+?c/i" ,"r") <> 1 then bugmes();quit;end
233 … ,"/a.*?c/i" ,"r") <> 1 then bugmes();quit;end
234 … ,"/a.{0,5}?c/i" ,"r") <> 1 then bugmes();quit;end
235 … ,"/[^ab]*/i" ,"r") <> 1 then bugmes();quit;end
236 … ,"/abc/i" ,"r") <> [] then bugmes();quit;end
237 … ,"/a+/i" ,"r") <> [] then bugmes();quit;end
238 … ,"/a|b|c|d|e/i" ,"r") <> 1 then bugmes();quit;end
239 … ,"/abcd*efg/i" ,"r") <> 1 then bugmes();quit;end
240 … ,"/ab*/i" ,"r") <> 1 then bugmes();quit;end
241 … ,"/ab*/i" ,"r") <> 1 then bugmes();quit;end
242 … ,"/[abhgefdc]ij/i" ,"r") <> 1 then bugmes();quit;end
243 … ,"/^(ab|cd)e/i" ,"r") <> [] then bugmes();quit;end
244 … ,"/a[bcd]*dcdcde/i" ,"r") <> 1 then bugmes();quit;end
245 … ,"/a[bcd]+dcdcde/i" ,"r") <> [] then bugmes();quit;end
246 … ,"/[a-zA-Z_][a-zA-Z0-9_]*/i" ,"r") <> 1 then bugmes();quit;end
247 … ,"/(bc+d$|ef*g.|h?i(j|k))/i" ,"r") <> [] then bugmes();quit;end
248 … ,"/(bc+d$|ef*g.|h?i(j|k))/i" ,"r") <> [] then bugmes();quit;end
249 … ,"/((((((((((a))))))))))\10/i" ,"r") <> 1 then bugmes();quit;end
250 … ,"/((((((((((a))))))))))\041/i" ,"r") <> [] then bugmes();quit;end
251 … ,"/((((((((((a))))))))))\041/i" ,"r") <> 1 then bugmes();quit;end
252 … ,"/(((((((((a)))))))))/i" ,"r") <> 1 then bugmes();quit;end
253 … ,"/multiple words of text/i" ,"r") <> [] then bugmes();quit;end
254 …H" ,"/multiple words/i" ,"r") <> 1 then bugmes();quit;end
255 … ,"/[k]/i" ,"r") <> [] then bugmes();quit;end
256 … ,"/a[-]?c/i" ,"r") <> 1 then bugmes();quit;end
257 … ,"/a(?!b)./" ,"r") <> 1 then bugmes();quit;end
258 … ,"/a(?=d)./" ,"r") <> 1 then bugmes();quit;end
259 … ,"/a(?=c|d)./" ,"r") <> 1 then bugmes();quit;end
260 … ,"/^[<>]&/" ,"r") <> 1 then bugmes();quit;end
261 … ,"/^(a\1?){4}$/" ,"r") <> [] then bugmes();quit;end
262 … ,"/^(a\1?){4}$/" ,"r") <> [] then bugmes();quit;end
263 … ,"/^(a(?(1)\1)){4}$/" ,"r") <> [] then bugmes();quit;end
264 … ,"/^(a(?(1)\1)){4}$/" ,"r") <> [] then bugmes();quit;end
265 … ,"/(?<=a)b/" ,"r") <> 1 then bugmes();quit;end
266 … ,"/(?<=a)b/" ,"r") <> [] then bugmes();quit;end
267 … ,"/(?<=a)b/" ,"r") <> [] then bugmes();quit;end
268 … ,"/(?<!c)b/" ,"r") <> 1 then bugmes();quit;end
269 … ,"/(?<!c)b/" ,"r") <> [] then bugmes();quit;end
270 … ,"/(?<!c)b/" ,"r") <> 1 then bugmes();quit;end
271 … ,"/(?<!c)b/" ,"r") <> 1 then bugmes();quit;end
272 … ,"/(?:..)*a/" ,"r") <> 1 then bugmes();quit;end
273 … ,"/(?:..)*?a/" ,"r") <> 1 then bugmes();quit;end
274 … ,"/^(?:b|a(?=(.)))*\1/" ,"r") <> 1 then bugmes();quit;end
275 … ,"/(?:(?i)a)b/" ,"r") <> 1 then bugmes();quit;end
276 … ,"/(?:(?i)a)b/" ,"r") <> 1 then bugmes();quit;end
277 … ,"/(?:(?i)a)b/" ,"r") <> [] then bugmes();quit;end
278 … ,"/((?i)a)b/" ,"r") <> [] then bugmes();quit;end
279 … ,"/(?i:a)b/" ,"r") <> 1 then bugmes();quit;end
280 … ,"/(?i:a)b/" ,"r") <> 1 then bugmes();quit;end
281 … ,"/(?i:a)b/" ,"r") <> [] then bugmes();quit;end
282 … ,"/((?i:a))b/" ,"r") <> [] then bugmes();quit;end
283 … ,"/(?:(?-i)a)b/i" ,"r") <> 1 then bugmes();quit;end
284 … ,"/(?:(?-i)a)b/i" ,"r") <> 1 then bugmes();quit;end
285 … ,"/(?:(?-i)a)b/i" ,"r") <> [] then bugmes();quit;end
286 … ,"/((?-i)a)b/i" ,"r") <> [] then bugmes();quit;end
287 … ,"/(?:(?-i)a)b/i" ,"r") <> 1 then bugmes();quit;end
288 … ,"/(?:(?-i)a)b/i" ,"r") <> [] then bugmes();quit;end
289 … ,"/((?-i)a)b/i" ,"r") <> [] then bugmes();quit;end
290 … ,"/(?-i:a)b/i" ,"r") <> 1 then bugmes();quit;end
291 … ,"/(?-i:a)b/i" ,"r") <> 1 then bugmes();quit;end
292 … ,"/(?-i:a)b/i" ,"r") <> [] then bugmes();quit;end
293 … ,"/((?-i:a))b/i" ,"r") <> [] then bugmes();quit;end
294 … ,"/(?-i:a)b/i" ,"r") <> 1 then bugmes();quit;end
295 … ,"/(?-i:a)b/i" ,"r") <> [] then bugmes();quit;end
296 … ,"/((?-i:a))b/i" ,"r") <> [] then bugmes();quit;end
297 … ,"/((?-i:a.))b/i" ,"r") <> [] then bugmes();quit;end
298 … ,"/((?s-i:a.))b/i" ,"r") <> [] then bugmes();quit;end
299 … ,"/(?:c|d)(?:)(?:a(?:)(?:b)(?:b(?:))(?:b(?:)(?:b)))/","r") <> 1 then bugmes();quit;end
300 …(?:)(?:bbbbbbbb)(?:bbbbbbbb(?:))(?:bbbbbbbb(?:)(?:bbbbbbbb)))/","r") <> 1 then bugmes();quit;end
301 … ,"/foo\w*\d{4}baz/" ,"r") <> 1 then bugmes();quit;end
302 … ,"/x(~~)*(?:(?:F)?)?/" ,"r") <> 1 then bugmes();quit;end
303 … ,"/^a(?#xxx){3}c/" ,"r") <> 1 then bugmes();quit;end
304 … ,"/^a (?#xxx) (?#yyy) {3}c/x" ,"r") <> 1 then bugmes();quit;end
305 … ,"/(?<![cd])b/" ,"r") <> [] then bugmes();quit;end
306 … ,"/(?<![cd])[ab]/" ,"r") <> 1 then bugmes();quit;end
307 … ,"/(?<!(c|d))b/" ,"r") <> [] then bugmes();quit;end
308 … ,"/(?<!(c|d))[ab]/" ,"r") <> 1 then bugmes();quit;end
309 … ,"/(?<!cd)[ab]/" ,"r") <> 1 then bugmes();quit;end
310 … ,"/^(?:a?b?)*$/" ,"r") <> [] then bugmes();quit;end
311 … ,"/(?m)^b/" ,"r") <> 1 then bugmes();quit;end
312 … ,"/^b/" ,"r") <> [] then bugmes();quit;end
313 … ,"/()^b/" ,"r") <> [] then bugmes();quit;end
314 … ,"/(x)?(?(1)a|b)/" ,"r") <> [] then bugmes();quit;end
315 … ,"/(x)?(?(1)b|a)/" ,"r") <> 1 then bugmes();quit;end
316 … ,"/()?(?(1)b|a)/" ,"r") <> 1 then bugmes();quit;end
317 … ,"/()(?(1)b|a)/" ,"r") <> [] then bugmes();quit;end
318 … ,"/()?(?(1)a|b)/" ,"r") <> 1 then bugmes();quit;end
319 … ,"/^(\()?blah(?(1)(\)))$/" ,"r") <> [] then bugmes();quit;end
320 … ,"/^(\()?blah(?(1)(\)))$/" ,"r") <> [] then bugmes();quit;end
321 … ,"/^(\(+)?blah(?(1)(\)))$/" ,"r") <> [] then bugmes();quit;end
322 … ,"/^(\(+)?blah(?(1)(\)))$/" ,"r") <> [] then bugmes();quit;end
323 … ,"/(?(?!a)a|b)/" ,"r") <> [] then bugmes();quit;end
324 … ,"/(?(?!a)b|a)/" ,"r") <> 1 then bugmes();quit;end
325 … ,"/(?(?=a)b|a)/" ,"r") <> [] then bugmes();quit;end
326 … ,"/(?(?=a)a|b)/" ,"r") <> 1 then bugmes();quit;end
327 … ,"/^(?=(a+?))\1ab/" ,"r") <> [] then bugmes();quit;end
328 … ,"/^(?=(a+?))\1ab/" ,"r") <> [] then bugmes();quit;end
329 … ,"/([\w:]+::)?(\w+)$/" ,"r") <> [] then bugmes();quit;end
330 … ,"/([\w:]+::)?(\w+)$/" ,"r") <> [] then bugmes();quit;end
331 … ,"/(>a+)ab/" ,"r") <> [] then bugmes();quit;end
332 … ,"/(?>a+)b/" ,"r") <> 1 then bugmes();quit;end
333 … ,"/[a[:]b[:c]/" ,"r") <> 1 then bugmes();quit;end
334 … ,"/[a[:]b[:c]/" ,"r") <> 1 then bugmes();quit;end
335 … ,"/((?>[^()]+)|\([^()]*\))+/" ,"r") <> 1 then bugmes();quit;end
336 … ,"/a\Z/" ,"r") <> [] then bugmes();quit;end
337 … ,"/a\z/" ,"r") <> [] then bugmes();quit;end
338 … ,"/a$/" ,"r") <> [] then bugmes();quit;end
339 … ,"/a\z/" ,"r") <> [] then bugmes();quit;end
340 … ,"/a\Z/m" ,"r") <> [] then bugmes();quit;end
341 … ,"/a\z/m" ,"r") <> [] then bugmes();quit;end
342 … ,"/a\z/m" ,"r") <> [] then bugmes();quit;end
343 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
344 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
345 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
346 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
347 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
348 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
349 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
350 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
351 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
352 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
353 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
354 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
355 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
356 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
357 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
358 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
359 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
360 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
361 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
362 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
363 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
364 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
365 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
366 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
367 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
368 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
369 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
370 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
371 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
372 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
373 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
374 … ,"/aa\Z/" ,"r") <> [] then bugmes();quit;end
375 … ,"/aa\z/" ,"r") <> [] then bugmes();quit;end
376 … ,"/aa$/" ,"r") <> [] then bugmes();quit;end
377 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
378 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
379 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
380 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
381 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
382 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
383 … ,"/aa\Z/m" ,"r") <> [] then bugmes();quit;end
384 … ,"/aa\z/m" ,"r") <> [] then bugmes();quit;end
385 … ,"/aa$/m" ,"r") <> [] then bugmes();quit;end
386 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
387 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
388 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
389 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
390 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
391 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
392 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
393 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
394 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
395 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
396 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
397 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
398 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
399 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
400 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
401 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
402 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
403 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
404 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
405 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
406 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
407 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
408 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
409 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
410 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
411 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
412 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
413 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
414 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
415 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
416 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
417 … ,"/ab\Z/" ,"r") <> [] then bugmes();quit;end
418 … ,"/ab\z/" ,"r") <> [] then bugmes();quit;end
419 … ,"/ab$/" ,"r") <> [] then bugmes();quit;end
420 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
421 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
422 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
423 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
424 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
425 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
426 … ,"/ab\Z/m" ,"r") <> [] then bugmes();quit;end
427 … ,"/ab\z/m" ,"r") <> [] then bugmes();quit;end
428 … ,"/ab$/m" ,"r") <> [] then bugmes();quit;end
429 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
430 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
431 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
432 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
433 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
434 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
435 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
436 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
437 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
438 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
439 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
440 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
441 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
442 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
443 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
444 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
445 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
446 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
447 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
448 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
449 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
450 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
451 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
452 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
453 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
454 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
455 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
456 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
457 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
458 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
459 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
460 … ,"/abb\Z/" ,"r") <> [] then bugmes();quit;end
461 … ,"/abb\z/" ,"r") <> [] then bugmes();quit;end
462 … ,"/abb$/" ,"r") <> [] then bugmes();quit;end
463 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
464 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
465 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
466 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
467 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
468 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
469 … ,"/abb\Z/m" ,"r") <> [] then bugmes();quit;end
470 … ,"/abb\z/m" ,"r") <> [] then bugmes();quit;end
471 … ,"/abb$/m" ,"r") <> [] then bugmes();quit;end
472 … ,"/a*abc?xyz+pqr{3}ab{2,}xy{4,5}pq{0,6}AB{0,}zz/","r") <> [] then bugmes();quit;end
473 … ,"/foo.bart/" ,"r") <> 1 then bugmes();quit;end
474 … ,"/^d[x][x][x]/m" ,"r") <> 1 then bugmes();quit;end
475 … ,"/tt+$/" ,"r") <> 1 then bugmes();quit;end
476 … ,"/\GX.*X/" ,"r") <> [] then bugmes();quit;end
477 … ,"/\.c(pp|xx|c)?$/i" ,"r") <> [] then bugmes();quit;end
478 … ,"/\.c(pp|xx|c)?$/i" ,"r") <> 1 then bugmes();quit;end
479 … ,"/^([a-z]:)/" ,"r") <> [] then bugmes();quit;end
480 … ,"/^\S\s+aa$/m" ,"r") <> 1 then bugmes();quit;end
481 … ,"/(^|a)b/" ,"r") <> 1 then bugmes();quit;end
482 … ,"/(\w)?(abc)\1b/" ,"r") <> [] then bugmes();quit;end
483 … ,"/^(?:.,){2}c/" ,"r") <> 1 then bugmes();quit;end
484 … ,"/^(?:[^,]*,){2}c/" ,"r") <> 1 then bugmes();quit;end
485 … ,"/(?i)/" ,"r") <> 1 then bugmes();quit;end
486 … ,"/(?!\A)x/m" ,"r") <> 1 then bugmes();quit;end
487 …bc"+lf ,"/^.{9}abc.*\n/m" ,"r") <> 1 then bugmes();quit;end
488 … ,"/^(a)?(?(1)a|b)+$/" ,"r") <> [] then bugmes();quit;end
489 … ,"/^(0+)?(?:x(1))?/" ,"r") <> 1 then bugmes();quit;end
490 … ,"/^([0-9a-fA-F]+)(?:x([0-9a-fA-F]+)?)(?:x([0-9a-fA-F]+))?/","r") <> 1 then bugmes();quit;end
491 … ,"/((?:aaaa|bbbb)cccc)?/" ,"r") <> 1 then bugmes();quit;end
492 … ,"/((?:aaaa|bbbb)cccc)?/" ,"r") <> 1 then bugmes();quit;end
493 … ,"/b\s^/m" ,"r") <> [] then bugmes();quit;end
494 … ,"/\ba/" ,"r") <> 1 then bugmes();quit;end
495 … ,"/ab(?i)cd/" ,"r") <> [] then bugmes();quit;end
496 … ,"/ab(?i)cd/" ,"r") <> 1 then bugmes();quit;end
497 … ,"/^(o)(?!.*\1)/i" ,"r") <> [] then bugmes();quit;end
498 … ,"/2(]*)?$\1/" ,"r") <> 1 then bugmes();quit;end
499 … ,"/.*a(?!(b|cd)*e).*f/" ,"r") <> [] then bugmes();quit;end
500 … ,"/(foo|fool|x.|money|parted)$/" ,"r") <> [] then bugmes();quit;end
501 … ,"/(x.|foo|fool|x.|money|parted|y.)$/" ,"r") <> [] then bugmes();quit;end
502 … ,"/(foo|fool|money|parted)$/" ,"r") <> [] then bugmes();quit;end
505 … ,'/a\\b/' ,'r') <> 1 then bugmes();quit;end
506 …aaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+X/' ,'r') <> 1 then bugmes();quit;end
507 …aaaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+XX/' ,'r') <> 1 then bugmes();quit;end
508 …aaaaaaaaaaaaaaaaaaaa' ,'/.XX(.+)+X/' ,'r') <> 1 then bugmes();quit;end
509 …aaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+X/' ,'r') <> [] then bugmes();quit;end
510 …aaaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+XX/' ,'r') <> [] then bugmes();quit;end
511 …aaaaaaaaaaaaaaaaaaaa' ,'/.XX(.+)+X/' ,'r') <> [] then bugmes();quit;end
512 …aaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+[X]/' ,'r') <> 1 then bugmes();quit;end
513 …aaaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+[X][X]/' ,'r') <> 1 then bugmes();quit;end
514 …aaaaaaaaaaaaaaaaaaaa' ,'/.XX(.+)+[X]/' ,'r') <> 1 then bugmes();quit;end
515 …aaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+[X]/' ,'r') <> [] then bugmes();quit;end
516 …aaaaaaaaaaaaaaaaaaaa' ,'/.X(.+)+[X][X]/' ,'r') <> [] then bugmes();quit;end
517 …aaaaaaaaaaaaaaaaaaaa' ,'/.XX(.+)+[X]/' ,'r') <> [] then bugmes();quit;end
518 …aaaaaaaaaaaaaaaaaaa' ,'/.[X](.+)+[X]/' ,'r') <> 1 then bugmes();quit;end
519 …aaaaaaaaaaaaaaaaaaaa' ,'/.[X](.+)+[X][X]/' ,'r') <> 1 then bugmes();quit;end
520 …aaaaaaaaaaaaaaaaaaaa' ,'/.[X][X](.+)+[X]/' ,'r') <> 1 then bugmes();quit;end
521 …aaaaaaaaaaaaaaaaaaa' ,'/.[X](.+)+[X]/' ,'r') <> [] then bugmes();quit;end
522 …aaaaaaaaaaaaaaaaaaaa' ,'/.[X](.+)+[X][X]/' ,'r') <> [] then bugmes();quit;end
523 …aaaaaaaaaaaaaaaaaaaa' ,'/.[X][X](.+)+[X]/' ,'r') <> [] then bugmes();quit;end
524 … ,'/a(?{})b/' ,'r') <> 1 then bugmes();quit;end
525 … ,'/(?(?{0})b|a)/' ,'r') <> 1 then bugmes();quit;end
526 … ,'/(?(?{1})a|b)/' ,'r') <> 1 then bugmes();quit;end
527 … ,'/(??{})/' ,'r') <> 1 then bugmes();quit;end
528 … ,'/a(?{"\{"})b/' ,'r') <> 1 then bugmes();quit;end
529 … ,'/a\\b/i' ,'r') <> 1 then bugmes();quit;end
530 … ,'/(a|aa|aaa|aaaa|aaaaa|aaaaaa)(??{$1&&"foo"})(b|c)/','r') <> [] then bugmes();quit;end
535 if r <> 1 then bugmes();quit;end
536 if w <> 1 then bugmes();quit;end
540 if r <> 1 then bugmes();quit;end
541 if w <> 1 then bugmes();quit;end
545 if r <> 1 then bugmes();quit;end
546 if w <> 1 then bugmes();quit;end
550 if r <> 1 then bugmes();quit;end
551 if w <> 1 then bugmes();quit;end
555 if r <> 1 then bugmes();quit;end
556 if w <> 1 then bugmes();quit;end
560 if r <> 1 then bugmes();quit;end
561 if w <> 1 then bugmes();quit;end
566 if r <> 1 then bugmes();quit;end
567 if w <> 1 then bugmes();quit;end
569 if r <> [] then bugmes();quit;end
570 if w <> [] then bugmes();quit;end
572 if r <> 1 then bugmes();quit;end
573 if w <> 1 then bugmes();quit;end
575 if r <> [] then bugmes();quit;end
576 if w <> [] then bugmes();quit;end
578 if r <> 1 then bugmes();quit;end
579 if w <> 1 then bugmes();quit;end
581 if r <> 1 then bugmes();quit;end
582 if w <> 1 then bugmes();quit;end
584 if r <> [] then bugmes();quit;end
585 if w <> [] then bugmes();quit;end
590 if r <> 1 then bugmes();quit;end
591 if w <> 1 then bugmes();quit;end
593 if r <> [] then bugmes();quit;end
594 if w <> [] then bugmes();quit;end
596 if r <> 1 then bugmes();quit;end
597 if w <> 1 then bugmes();quit;end
599 if r <> [] then bugmes();quit;end
600 if w <> [] then bugmes();quit;end
602 if r <> 1 then bugmes();quit;end
603 if w <> 1 then bugmes();quit;end
605 if r <> [] then bugmes();quit;end
606 if w <> [] then bugmes();quit;end
611 if r <> 1 then bugmes();quit;end
612 if w <> 1 then bugmes();quit;end
614 if r <> [] then bugmes();quit;end
615 if w <> [] then bugmes();quit;end
617 if r <> 1 then bugmes();quit;end
618 if w <> 1 then bugmes();quit;end
620 if r <> [] then bugmes();quit;end
621 if w <> [] then bugmes();quit;end
623 if r <> 1 then bugmes();quit;end
624 if w <> 1 then bugmes();quit;end
626 if r <> [] then bugmes();quit;end
627 if w <> [] then bugmes();quit;end
632 if r <> 1 then bugmes();quit;end
633 if w <> 1 then bugmes();quit;end
635 if r <> [] then bugmes();quit;end
636 if w <> [] then bugmes();quit;end
638 if r <> 1 then bugmes();quit;end
639 if w <> 1 then bugmes();quit;end
641 if r <> [] then bugmes();quit;end
642 if w <> [] then bugmes();quit;end
644 if r <> 1 then bugmes();quit;end
645 if w <> 1 then bugmes();quit;end
647 if r <> [] then bugmes();quit;end
648 if w <> [] then bugmes();quit;end
653 if r <> 1 then bugmes();quit;end
654 if w <> 1 then bugmes();quit;end
656 if r <> [] then bugmes();quit;end
657 if w <> [] then bugmes();quit;end
659 if r <> 1 then bugmes();quit;end
660 if w <> 1 then bugmes();quit;end
662 if r <> [] then bugmes();quit;end
663 if w <> [] then bugmes();quit;end
665 if r <> 1 then bugmes();quit;end
666 if w <> 1 then bugmes();quit;end
668 if r <> [] then bugmes();quit;end
669 if w <> [] then bugmes();quit;end