This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
update TOC for perl5153delta
[perl5.git] / t / io / errno.t
index aff3369..dadc4e0 100644 (file)
@@ -32,10 +32,15 @@ SKIP:
                my $test_in_esc = $test_in;
                $test_in_esc =~ s/\n/\\n/g;
                for my $rs_code ('', '$/=undef', '$/=\2', '$/=\1024') {
+                   TODO:
+                   {
+                       local $::TODO = "We get RMS\$_IOP at EOF on VMS when \$/ is undef"
+                           if $^O eq 'VMS' && $rs_code eq '$/=undef';
                        is( runperl( prog => "$rs_code; $test_prog",
                                                 stdin => $test_in, stderr => 1),
                                $test_in,
                                "Wrong errno, PERLIO=$ENV{PERLIO} stdin='$test_in_esc', $rs_code");
+                   }
                }
     }
 }