plan( tests => 16 );
my $test_prog = 'while(<>){print}; print $!';
+my $saved_perlio;
+
+BEGIN {
+ $saved_perlio = $ENV{PERLIO};
+}
+END {
+ delete $ENV{PERLIO};
+ $ENV{PERLIO} = $saved_perlio if defined $saved_perlio;
+}
for my $perlio ('perlio', 'stdio') {
$ENV{PERLIO} = $perlio;
+SKIP:
for my $test_in ("test\n", "test") {
+ skip("Guaranteed newline at EOF on VMS", 4) if $^O eq 'VMS' && $test_in eq 'test';
my $test_in_esc = $test_in;
$test_in_esc =~ s/\n/\\n/g;
for my $rs_code ('', '$/=undef', '$/=\2', '$/=\1024') {
is( runperl( prog => "$rs_code; $test_prog",
stdin => $test_in, stderr => 1),
$test_in,
- "Wrong errno, PERLIO=$ENV{PERLIO} stdin='$test_in_esc'");
+ "Wrong errno, PERLIO=$ENV{PERLIO} stdin='$test_in_esc', $rs_code");
}
- }
+ }
}