blob: a7cdf288979030eccc02eb850a5d049cbcdff961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!perl
# ioleaks.t
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
use strict;
use warnings;
plan 'no_plan';
# :unix -> not ok
# :stdio -> not ok
# :perlio -> ok
# :crlf -> ok
TODO: {
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;
if ($_ > 1 && $layer =~ /^:(unix|stdio)$/) {
$::TODO = "[perl #56644] PerlIO resource leaks on open() and then :pop in :unix and :stdio"
}
open my $fh, "<$layer", $0 or die $!;
is fileno($fh), $base_fd, $layer;
binmode $fh, ':pop';
}
}
}
|