Re: [perl #19566] Perl 5.8.0 segfault
[p5sagit/p5-mst-13.2.git] / t / io / crlf.t
index 484596b..96f7ed7 100644 (file)
@@ -30,7 +30,9 @@ if (find PerlIO::Layer 'perlio') {
  { local $/; $text = <FOO> }
  is(count_chars($text, "\015\012"), 2000);
 
+ SKIP:
  {
+  if ($^X =~ /\bminiperl\b/) { skip(q/miniperl can't load PerlIO layers/) }
   my $fcontents = join "", map {"$_\r\n"} "a".."zzz";
   open my $fh, "<:crlf", \$fcontents;
   local $/ = "xxx";