undef $! before running the errno tests
Bram [Sat, 1 Aug 2009 20:11:22 +0000 (22:11 +0200)]
t/io/errno.t

index 6294ed7..ad4e116 100644 (file)
@@ -9,7 +9,7 @@ require './test.pl';
 
 plan( tests => 16 );
 
-my $test_prog = 'while(<>){print}; print $!';
+my $test_prog = 'undef $!;while(<>){print}; print $!';
 my $saved_perlio;
 
 BEGIN {