Skip to content

Commit

Permalink
desired subset of netbsd10-202405
Browse files Browse the repository at this point in the history
  • Loading branch information
nmisch committed Nov 10, 2024
1 parent 2128df3 commit 7ffc2f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pkginstall: echo no packages required

- name: netbsd
version: '9.3'
version: '10.0'
pkginstall: pkgin -y install perl || true
steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 6 additions & 3 deletions t/kill_kill.t
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,17 @@ else {

# Test 1
SCOPE: {
my $out;
my $h = IPC::Run::start(
[
$^X,
'-e',
'sleep while 1',
]
'$|=1;print "running\n";sleep while 1',
],
\undef,
\$out
);

pump $h until $out =~ /running/;
my $needed = $h->kill_kill;
ok( !$needed, 'Did not need kill_kill' );
}
Expand Down

0 comments on commit 7ffc2f0

Please sign in to comment.