Skip to content

Commit 7ffc2f0

Browse files
committed
desired subset of netbsd10-202405
1 parent 2128df3 commit 7ffc2f0

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/bsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
pkginstall: echo no packages required
3030

3131
- name: netbsd
32-
version: '9.3'
32+
version: '10.0'
3333
pkginstall: pkgin -y install perl || true
3434
steps:
3535
- uses: actions/checkout@v4

t/kill_kill.t

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,17 @@ else {
3434

3535
# Test 1
3636
SCOPE: {
37+
my $out;
3738
my $h = IPC::Run::start(
3839
[
3940
$^X,
4041
'-e',
41-
'sleep while 1',
42-
]
42+
'$|=1;print "running\n";sleep while 1',
43+
],
44+
\undef,
45+
\$out
4346
);
44-
47+
pump $h until $out =~ /running/;
4548
my $needed = $h->kill_kill;
4649
ok( !$needed, 'Did not need kill_kill' );
4750
}

0 commit comments

Comments
 (0)