We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffc2f0 commit f5dd777Copy full SHA for f5dd777
t/kill_kill.t
@@ -44,6 +44,10 @@ SCOPE: {
44
\undef,
45
\$out
46
);
47
+ # On most platforms, we don't need to wait to read the "running" message.
48
+ # On NetBSD 10.0, not waiting led to us often issuing kill(kid, SIGTERM)
49
+ # before the end of the child's exec(). Per https://gnats.netbsd.org/58268,
50
+ # NetBSD then discarded the signal.
51
pump $h until $out =~ /running/;
52
my $needed = $h->kill_kill;
53
ok( !$needed, 'Did not need kill_kill' );
0 commit comments