DJGPP tweaks from Laszlo Molnar.
Jarkko Hietaniemi [Sun, 9 Dec 2001 23:32:08 +0000 (23:32 +0000)]
p4raw-id: //depot/perl@13571

djgpp/config.over
lib/File/Find/t/find.t
lib/File/Find/t/taint.t
t/pod/find.t

index 8d6bb3e..032f85e 100644 (file)
@@ -46,8 +46,9 @@ repair()
      -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")
index 823c7b1..097f0fc 100644 (file)
@@ -50,10 +50,10 @@ BEGIN {
 }
 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;
index 7643040..b36bf89 100644 (file)
@@ -49,16 +49,16 @@ use Cwd;
 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;
index 1bac930..df36147 100644 (file)
@@ -53,6 +53,9 @@ if ($^O eq 'VMS') {
     }
     ok($count/($#result+1)-1,$#compare);
 }
+elsif ($^O eq 'dos') {
+    ok(lc $result,lc $compare);
+}
 else {
     ok($result,$compare);
 }