In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/958e6d4b516d826d7139a8ead2b1054c5f8b9eda?hp=93592fd5aeec89ac25994a493ef54e1d7a572d65>
- Log ----------------------------------------------------------------- commit 958e6d4b516d826d7139a8ead2b1054c5f8b9eda Author: Bram <[email protected]> Date: Sat Aug 1 22:11:22 2009 +0200 undef $! before running the errno tests ----------------------------------------------------------------------- Summary of changes: t/io/errno.t | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/io/errno.t b/t/io/errno.t index 6294ed7..ad4e116 100644 --- a/t/io/errno.t +++ b/t/io/errno.t @@ -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 { -- Perl5 Master Repository
