X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fds-leak.t;h=ea0eeaa651b06eb4e0636f4ba8d74cd440d73c57;hb=d7fda3f4b9d4c9e6d01c818f09905d6827fa693f;hp=dd8446dcd1f77e0f9a2d167ab0c057c917a443bb;hpb=f90225afaef139a5e82b3083b7bdcb6abf0e7c1e;p=public-inbox.git diff --git a/t/ds-leak.t b/t/ds-leak.t index dd8446dc..ea0eeaa6 100644 --- a/t/ds-leak.t +++ b/t/ds-leak.t @@ -1,4 +1,4 @@ -# Copyright (C) 2019 all contributors +# Copyright (C) 2019-2020 all contributors # Licensed the same as Danga::Socket (and Perl5) # License: GPL-1.0+ or Artistic-1.0-Perl # @@ -15,9 +15,21 @@ if ('close-on-exec for epoll and kqueue') { PublicInbox::DS->SetLoopTimeout(0); PublicInbox::DS->SetPostLoopCallback(sub { 0 }); - PublicInbox::DS->AddTimer(0, sub { $pid = spawn([qw(sleep 10)]) }); + + # make sure execve closes if we're using fork() + my ($r, $w); + pipe($r, $w) or die "pipe: $!"; + + PublicInbox::DS::add_timer(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: {