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 2128df3 commit 7ffc2f0Copy full SHA for 7ffc2f0
.github/workflows/bsd.yml
@@ -29,7 +29,7 @@ jobs:
29
pkginstall: echo no packages required
30
31
- name: netbsd
32
- version: '9.3'
+ version: '10.0'
33
pkginstall: pkgin -y install perl || true
34
steps:
35
- uses: actions/checkout@v4
t/kill_kill.t
@@ -34,14 +34,17 @@ else {
# Test 1
36
SCOPE: {
37
+ my $out;
38
my $h = IPC::Run::start(
39
[
40
$^X,
41
'-e',
- 'sleep while 1',
42
- ]
+ '$|=1;print "running\n";sleep while 1',
43
+ ],
44
+ \undef,
45
+ \$out
46
);
-
47
+ pump $h until $out =~ /running/;
48
my $needed = $h->kill_kill;
49
ok( !$needed, 'Did not need kill_kill' );
50
}
0 commit comments