blob: 22f4f58f71412f35c3f6fec3543307f1cac3be5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!./perl
#use re 'debug';
BEGIN {
${^RE_TRIE_MAXBUFF}=0;
#${^RE_DEBUG_FLAGS}=0;
}
$qr = 1;
for $file ('./op/regexp.t', './t/op/regexp.t', ':op:regexp.t') {
if (-r $file) {
do $file;
exit;
}
}
die "Cannot find ./op/regexp.t or ./t/op/regexp.t\n";
|