-e 's=cwd=Cwd=' \
-e 's=perlio/via=PerlIO/Via=' \
-e 's=xs/typemap=XS/Typemap=' \
- -e 's=unicode/normalize?=Unicode/Normalize=' \
- -e 's=i18n/langinfo=I18N/Langinfo='
+ -e 's=unicode/normaliz=Unicode/Normalize=' \
+ -e 's=i18n/langinfo=I18N/Langinfo=' \
+ -e 's=devel/ppport=Devel/PPPort='
}
static_ext=$(repair "$static_ext")
extensions=$(repair "$extensions")
}
cleanup();
-find({wanted => sub { print "ok 1\n" if $_ eq 'commonsense.t'; } },
+find({wanted => sub { print "ok 1\n" if $_ eq 'access.t'; } },
File::Spec->curdir);
-finddepth({wanted => sub { print "ok 2\n" if $_ eq 'commonsense.t'; } },
+finddepth({wanted => sub { print "ok 2\n" if $_ eq 'access.t'; } },
File::Spec->curdir);
my $case = 2;
cleanup();
my $found;
-find({wanted => sub { $found = 1 if ($_ eq 'commonsense.t') },
+find({wanted => sub { $found = 1 if ($_ eq 'access.t') },
untaint => 1, untaint_pattern => qr|^(.+)$|}, File::Spec->curdir);
-ok($found, 'commonsense.t found');
+ok($found, 'access.t found');
$found = 0;
-finddepth({wanted => sub { $found = 1 if $_ eq 'commonsense.t'; },
+finddepth({wanted => sub { $found = 1 if $_ eq 'access.t'; },
untaint => 1, untaint_pattern => qr|^(.+)$|}, File::Spec->curdir);
-ok($found, 'commonsense.t found again');
+ok($found, 'access.t found again');
my $case = 2;
my $FastFileTests_OK = 0;
}
ok($count/($#result+1)-1,$#compare);
}
+elsif ($^O eq 'dos') {
+ ok(lc $result,lc $compare);
+}
else {
ok($result,$compare);
}