In 5.8.x, fast stdio places still do use stdio.
Jarkko Hietaniemi [Tue, 8 Jul 2003 09:18:19 +0000 (09:18 +0000)]
p4raw-id: //depot/perl@20071

ext/Digest/MD5/t/badfile.t

index 90a7857..4b3a331 100644 (file)
@@ -31,7 +31,8 @@ eval {
 # cannot expect this to fail reliably with stdio.
 my $stdio = !exists  $Config{useperlio} ||
            !defined $Config{useperlio} ||
-           (exists $ENV{PERLIO} && $ENV{PERLIO} eq 'stdio');
+           (exists $ENV{PERLIO} && $ENV{PERLIO} eq 'stdio') ||
+           defined $Config{usefaststdio};
 print "not " unless $@ =~ /^Reading from filehandle failed at/ || $stdio;
 print "ok 3\n";