Fix test case 180-fd-leaks when running on Fedora (#3911)
This commit is contained in:
parent
a376d1e52f
commit
967ec2e0ea
|
@ -29,6 +29,10 @@ my $tmp = tmpnam();
|
||||||
mkfifo($tmp, 0600) or die "Could not create FIFO in $tmp";
|
mkfifo($tmp, 0600) or die "Could not create FIFO in $tmp";
|
||||||
my ($outfh, $outname) = tempfile('/tmp/i3-ls-output.XXXXXX', UNLINK => 1);
|
my ($outfh, $outname) = tempfile('/tmp/i3-ls-output.XXXXXX', UNLINK => 1);
|
||||||
|
|
||||||
|
# Get fds from a clean shell
|
||||||
|
my $shoutput = `sh -c "ls -l /proc/self/fd"`;
|
||||||
|
|
||||||
|
# Get fds from i3
|
||||||
cmd qq|exec ls -l /proc/self/fd >$outname && echo done >$tmp|;
|
cmd qq|exec ls -l /proc/self/fd >$outname && echo done >$tmp|;
|
||||||
|
|
||||||
open(my $fh, '<', $tmp);
|
open(my $fh, '<', $tmp);
|
||||||
|
@ -38,29 +42,39 @@ close($fh);
|
||||||
unlink($tmp);
|
unlink($tmp);
|
||||||
|
|
||||||
# Get the ls /proc/self/fd output
|
# Get the ls /proc/self/fd output
|
||||||
my $output;
|
my $i3output;
|
||||||
{
|
{
|
||||||
local $/;
|
local $/;
|
||||||
$output = <$outfh>;
|
$i3output = <$outfh>;
|
||||||
}
|
}
|
||||||
close($outfh);
|
close($outfh);
|
||||||
|
|
||||||
# Split lines, keep only those which are symlinks.
|
sub extract_fds {
|
||||||
my @lines = grep { /->/ } split("\n", $output);
|
my $output = @_;
|
||||||
|
|
||||||
my %fds = map { /([0-9]+) -> (.+)$/; ($1, $2) } @lines;
|
# Split lines, keep only those which are symlinks.
|
||||||
|
my @lines = grep { /->/ } split("\n", $output);
|
||||||
|
|
||||||
# Filter out 0, 1, 2 (stdin, stdout, stderr).
|
my %fds = map { /([0-9]+) -> (.+)$/; ($1, $2) } @lines;
|
||||||
delete $fds{0};
|
|
||||||
delete $fds{1};
|
|
||||||
delete $fds{2};
|
|
||||||
|
|
||||||
# Filter out the fd which is caused by ls calling readdir().
|
# Filter out 0, 1, 2 (stdin, stdout, stderr).
|
||||||
for my $fd (keys %fds) {
|
delete $fds{0};
|
||||||
delete $fds{$fd} if $fds{$fd} =~ m,^/proc/\d+/fd$,;
|
delete $fds{1};
|
||||||
|
delete $fds{2};
|
||||||
|
|
||||||
|
# filter out the fd which is caused by ls calling readdir().
|
||||||
|
for my $fd (keys %fds) {
|
||||||
|
delete $fds{$fd} if $fds{$fd} =~ m,^/proc/\d+/fd$,;
|
||||||
|
}
|
||||||
|
|
||||||
|
return %fds;
|
||||||
}
|
}
|
||||||
|
|
||||||
is(scalar keys %fds, 0, 'No file descriptors leaked');
|
my %i3fds = extract_fds($i3output);
|
||||||
|
my %shfds = extract_fds($shoutput);
|
||||||
|
|
||||||
|
# Diff the fds to account for services that keep fds open, such as the System Security Services Daemon (sssd)
|
||||||
|
is(scalar keys %i3fds, scalar keys %shfds, 'No file descriptors leaked');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue