Skip to content

Commit

Permalink
Wait a little longer for output
Browse files Browse the repository at this point in the history
The current wait seems to be on the bubble for GitHub
actions, so add a smidge more.
  • Loading branch information
briandfoy committed Jun 17, 2023
1 parent c4d89d1 commit caf1109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/bc/ipc-open3.t
Expand Up @@ -42,11 +42,11 @@ sub run_bc {
# will check its filehandles too soon.
select(undef,undef,undef,0.4);

if( $select_err->can_read(0) ) {
if( $select_err->can_read(0.1) ) {
sysread $child_err, my $error, 4096;
$hash{error} .= $error;
}
if( $select_out->can_read(0) ) {
if( $select_out->can_read(0.1) ) {
sysread $child_out, my $output, 4096;
$hash{output} .= $output;
}
Expand Down

0 comments on commit caf1109

Please sign in to comment.