X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fds-leak.t;h=34ffc125ed49a8dfcc975550b4cc4acc299d3ed4;hb=1bbfab375438f149dcff9047dd0c5ed3a08eed53;hp=9e3243e92c6118a3d998560d832af4271c3634ed;hpb=1d94048ba6094b9b3bbefe279e066c3992b30408;p=public-inbox.git diff --git a/t/ds-leak.t b/t/ds-leak.t index 9e3243e9..34ffc125 100644 --- a/t/ds-leak.t +++ b/t/ds-leak.t @@ -8,16 +8,28 @@ use warnings; use Test::More; use_ok 'PublicInbox::DS'; -subtest('close-on-exec for epoll and kqueue' => sub { +if ('close-on-exec for epoll and kqueue') { use PublicInbox::Spawn qw(spawn); my $pid; my $evfd_re = qr/(?:kqueue|eventpoll)/i; PublicInbox::DS->SetLoopTimeout(0); PublicInbox::DS->SetPostLoopCallback(sub { 0 }); + + # make sure execve closes if we're using fork() + my ($r, $w); + pipe($r, $w) or die "pipe: $!"; + PublicInbox::DS->AddTimer(0, sub { $pid = spawn([qw(sleep 10)]) }); PublicInbox::DS->EventLoop; ok($pid, 'subprocess spawned'); + + # wait for execve, we need to ensure lsof sees sleep(1) + # and not the fork of this process: + close $w or die "close: $!"; + my $l = <$r>; + is($l, undef, 'cloexec works and sleep(1) is running'); + my @of = grep(/$evfd_re/, `lsof -p $pid 2>/dev/null`); my $err = $?; SKIP: { @@ -29,7 +41,7 @@ subtest('close-on-exec for epoll and kqueue' => sub { waitpid($pid, 0); } PublicInbox::DS->Reset; -}); +} SKIP: { # not bothering with BSD::Resource