Remove spurious TODO indicators
Rafael Garcia-Suarez [Thu, 26 Feb 2009 10:00:40 +0000 (11:00 +0100)]
By definition, the first test in a series for testing a
leak should always succeed

t/io/perlio_leaks.t

index ad76c39..7bd0346 100644 (file)
@@ -11,11 +11,11 @@ use Test::More 'no_plan';
 # :crlf   -> ok
 
 TODO: {
-    local $TODO = "[perl #56644] PerlIO resource leaks on open() and then :pop in :unix and :stdio";
     foreach my $layer(qw(:unix :stdio  :perlio :crlf)){
         my $base_fd = do{ open my $in, '<', $0 or die $!; fileno $in };
 
         for(1 .. 3){
+           local $TODO = "[perl #56644] PerlIO resource leaks on open() and then :pop in :unix and :stdio" if $_ > 1;
                 open my $fh, "<$layer", $0 or die $!;
 
                 is fileno($fh), $base_fd, $layer;