blob: 1207343bf18b662623518e9483efbc6b12c19ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!./perl
$dummy = defined $&; # Now we have it...
for $file ('op/subst.t', 't/op/subst.t', ':op:subst.t') {
if (-r $file) {
do "./$file";
exit;
}
}
die "Cannot find op/subst.t or t/op/subst.t\n";
|