1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::More;
use Test::Exception;
use POSIX;
use FindBin;
use IO::Select;
use Mojo::File qw(tempfile path);
use lib ("$FindBin::Bin/lib", "../lib", "lib");
use Mojo::IOLoop::ReadWriteProcess qw(process);
use Mojo::IOLoop::ReadWriteProcess::Test::Utils qw(attempt check_bin);
my $interval = $ENV{MOJO_PROCESS_TEST_SLEEP_INTERVAL} // 0.01;
my $timeout = $ENV{MOJO_PROCESS_SUBTEST_TIMEOUT} // 15;
my $kill_sleeptime = $ENV{TOTAL_SLEEPTIME_DURING_KILL} // ($interval * 5.0);
subtest process => sub {
my $c = Mojo::IOLoop::ReadWriteProcess->new();
can_ok($c, qw(verbose _diag));
my $buffer;
{
open my $handle, '>', \$buffer;
local *STDERR = $handle;
$c->_diag("FOOTEST");
};
like $buffer, qr/>> main::__ANON__(.*\])*\(\): FOOTEST/,
"diag() correct output format";
};
subtest 'process basic functions' => sub {
my $p = Mojo::IOLoop::ReadWriteProcess->new();
eval {
$p->start();
$p->stop();
};
ok $@, "Error expected";
like $@, qr/Nothing to do/,
"Process with no code nor execute command, will fail";
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval
);
eval { $p->_fork(); };
ok $@, "Error expected";
like $@, qr/Can't spawn child without code/, "_fork() with no code will fail";
my @output;
{
pipe(PARENT, CHILD);
my $p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
code => sub {
close(PARENT);
open STDERR, ">&", \*CHILD or die $!;
print STDERR "FOOBARFTW\n" while 1;
})->start();
close(CHILD);
@output = scalar <PARENT>;
$p->stop();
chomp @output;
}
is $output[0], "FOOBARFTW", 'right output';
};
subtest 'process is_running()' => sub {
my @output;
pipe(PARENT, CHILD);
my $patience = $timeout / $interval;
my $p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
code => sub {
close(PARENT);
open STDERR, ">&", \*CHILD or die $!;
print STDERR "FOOBARFTW\n";
});
$p->start();
close(CHILD);
@output = scalar <PARENT>;
$p->stop();
sleep $interval while $p->is_running && --$patience > 0;
close(PARENT);
chomp @output;
is $output[0], "FOOBARFTW", 'right output from process';
is $p->is_running, 0, "Process now is stopped";
# Redefine new code and restart it.
pipe(PARENT, CHILD);
$p->code(
sub {
close(PARENT);
open STDERR, ">&", \*CHILD or die $!;
print STDERR "FOOBAZFTW\n";
1 while 1;
});
$p->restart()->restart()->restart();
sleep $interval until $p->is_running || --$patience <= 0;
is $p->is_running, 1, "Process now is running";
close(CHILD);
@output = scalar <PARENT>;
$p->stop();
sleep $interval while $p->is_running && --$patience > 0;
chomp @output;
is $output[0], "FOOBAZFTW", 'right output from process';
is $p->is_running, 0, "Process now is not running";
@output = ('');
pipe(PARENT, CHILD);
$p->restart();
sleep $interval until $p->is_running || --$patience <= 0;
is $p->is_running, 1, "Process now is running";
close(CHILD);
@output = scalar <PARENT>;
$p->stop();
chomp @output;
is $output[0], "FOOBAZFTW", 'right output from process';
};
subtest 'process execute()' => sub {
my $test_script = check_bin("$FindBin::Bin/data/process_check.sh");
my $test_script_sigtrap = check_bin("$FindBin::Bin/data/term_trap.sh");
my $p = Mojo::IOLoop::ReadWriteProcess->new(
sleeptime_during_kill => $interval,
execute => $test_script
)->start();
is $p->getline, "TEST normal print\n", 'Get right output from stdout';
is $p->err_getline, "TEST error print\n", 'Get right output from stderr';
is $p->is_running, 1, 'process is still waiting for our input';
$p->write("FOOBAR");
is $p->read, "you entered FOOBAR\n",
'process received input and printed it back';
$p->stop();
is $p->is_running, 0, 'process is not running anymore';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
execute => $test_script,
args => [
qw(FOO
BAZ)
])->start();
is $p->stdout, "TEST normal print\n", 'Get right output from stdout';
is $p->err_getline, "TEST error print\n", 'Get right output from stderr';
is $p->is_running, 1, 'process is still waiting for our input';
$p->write("FOOBAR");
is $p->getline, "you entered FOOBAR\n",
'process received input and printed it back';
$p->wait_stop();
is $p->is_running, 0, 'process is not running anymore';
is $p->getline, "FOO BAZ\n", 'process received extra arguments';
is $p->exit_status, 100, 'able to retrieve function return';
$p = Mojo::IOLoop::ReadWriteProcess->new(
sleeptime_during_kill => $interval,
execute => $test_script
)->args([qw(FOO BAZ)])->start();
is $p->stdout, "TEST normal print\n", 'Get right output from stdout';
is $p->err_getline, "TEST error print\n", 'Get right output from stderr';
is $p->is_running, 1, 'process is still waiting for our input';
$p->write("FOOBAR");
is $p->getline, "you entered FOOBAR\n",
'process received input and printed it back';
$p->wait_stop();
is $p->is_running, 0, 'process is not running anymore';
is $p->getline, "FOO BAZ\n", 'process received extra arguments';
is $p->exit_status, 100, 'able to retrieve function return';
my $patience = $timeout / $interval;
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
execute => $test_script
);
$p->start();
sleep $interval until $p->is_running || --$patience <= 0;
is $p->is_running, 1, 'process is still running';
is $p->getline, "TEST error print\n",
'Get STDERR output from stdout, always in getline()';
$p->stop();
like $p->getline, qr/TEST (exiting|normal print)/,
'Still able to get stdout output, always in getline()';
my $p2 = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
execute => $test_script,
set_pipes => 0
);
$p2->start();
is $p2->getline, undef, "pipes are correctly disabled";
$p2->stop();
is !!$p2->_status, 1,
'take exit status even with set_pipes = 0 (we killed it)';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
verbose => 1,
separate_err => 0,
execute => $test_script_sigtrap,
max_kill_attempts => -4,
); # ;)
$p->start();
is($p->read_stdout(), "term_trap.sh started\n");
$p->stop();
is $p->is_running, 1, 'process is still running';
is $p->_status, undef, 'no status yet';
my $err = ${(@{$p->error})[0]};
my $exp = qr/Could not kill process/;
like $err, $exp, 'Error is not empty if process could not be killed';
$p->max_kill_attempts(50);
$p->blocking_stop(0);
$p->stop();
is $p->is_running, 1, 'process is still running';
$p->blocking_stop(1);
$p->max_kill_attempts(5);
$p->stop;
$p->wait;
is $p->is_running, 0, 'process is shut down';
is $p->errored, 1, 'Process died and errored';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
verbose => 1,
separate_err => 0,
blocking_stop => 1,
execute => $test_script,
max_kill_attempts => -1 # ;)
)->start()->stop();
is $p->is_running, 0,
'process is shut down by kill signal when "blocking_stop => 1"';
my $pidfile = tempfile;
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
verbose => 1,
separate_err => 0,
blocking_stop => 1,
execute => $test_script,
max_kill_attempts => -1, # ;)
pidfile => $pidfile
)->start();
my $pid = path($pidfile)->slurp();
is -e $pidfile, 1, 'Pidfile is there!';
is $pid, $p->pid, "Pidfile was correctly written";
$p->stop();
is -e $pidfile, undef, 'Pidfile got removed after stop()';
$pidfile = tempfile;
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
verbose => 1,
separate_err => 0,
blocking_stop => 1,
execute => $test_script,
max_kill_attempts => -1, # ;)
)->start();
$p->write_pidfile($pidfile);
$pid = path($pidfile)->slurp();
is -e $pidfile, 1, 'Pidfile is there!';
is $pid, $p->pid, "Pidfile was correctly written";
$p->stop();
is -e $pidfile, undef, 'Pidfile got removed after stop()';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
verbose => 1,
separate_err => 0,
blocking_stop => 1,
execute => $test_script,
max_kill_attempts => -1, # ;)
)->start();
is $p->write_pidfile(), undef, "No filename given to write_pidfile";
$p->stop();
};
subtest 'process(execute => /bin/true)' => sub {
check_bin('/bin/true');
is(
process(execute => '/bin/true')
->quirkiness(1)
->start()
->wait_stop()
->exit_status(),
0,
'Simple exec of /bin/true return 0'
);
};
subtest 'process code()' => sub {
my $p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
code => sub {
my ($self) = shift;
my $parent_output = $self->channel_out;
my $parent_input = $self->channel_in;
print $parent_output "FOOBARftw\n";
print "TEST normal print\n";
print STDERR "TEST error print\n";
print "Enter something : ";
my $a = <STDIN>;
chomp($a);
print "you entered $a\n";
my $parent_stdin = $parent_input->getline;
print $parent_output "PONG\n" if $parent_stdin eq "PING\n";
exit 0;
})->start();
$p->channel_in->write("PING\n");
is $p->getline, "TEST normal print\n", 'Get right output from stdout';
is $p->stderr, "TEST error print\n", 'Get right output from stderr';
is $p->is_running, 1, 'process is running';
$p->write("FOOBAR\n");
is(IO::Select->new($p->read_stream)->can_read(10),
1, 'can read from stdout handle');
is $p->getline, "Enter something : you entered FOOBAR\n", 'can read output';
is $p->channel_out->getline, "FOOBARftw\n", "can read from internal channel";
is $p->channel_read_handle->getline, "PONG\n",
"can read from internal channel";
$p->stop->wait;
is $p->is_running, 0, 'process is not running';
$p->restart();
$p->channel_write("PING");
is $p->getline, "TEST normal print\n", 'Get right output from stdout';
is $p->stderr, "TEST error print\n", 'Get right output from stderr';
is $p->is_running, 1, 'process is running';
is $p->channel_read(), "FOOBARftw\n",
"Read from channel while process is running";
$p->write("FOOBAR");
is(IO::Select->new($p->read_stream)->can_read(10),
1, 'can read from stdout handle');
is $p->read_all, "Enter something : you entered FOOBAR\n",
'Get right output from stdout';
$p->stop->wait;
my @result = $p->read_all;
is @result, 0, 'output buffer is now empty';
is $p->channel_read_handle->getline, "PONG\n",
"can read from internal channel";
is $p->is_running, 0, 'process is not running';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
code => sub {
my ($self) = shift;
my $parent_output = $self->channel_out;
my $parent_input = $self->channel_in;
print "TEST normal print\n";
print STDERR "TEST error print\n";
return "256";
})->start();
is $p->getline, "TEST normal print\n", 'Get right output from stderr/stdout';
is $p->getline, "TEST error print\n", 'Get right output from stderr/stdout';
$p->wait_stop();
is $p->is_running, 0, 'process is not running';
is $p->return_status, 256, 'right return code';
$p = Mojo::IOLoop::ReadWriteProcess->new(sub { die "Fatal error" },
sleeptime_during_kill => $interval);
my $event_fired = 0;
$p->on(
process_error => sub {
$event_fired = 1;
like(pop->first->to_string, qr/Fatal error/, 'right error from event');
});
$p->start();
$p->wait_stop();
is $p->is_running, 0, 'process is not running';
is $p->return_status, undef, 'process did not return nothing';
is $p->errored, 1, 'Process died';
like(${(@{$p->error})[0]}, qr/Fatal error/, 'right error');
is $event_fired, 1, 'error event fired';
$p = Mojo::IOLoop::ReadWriteProcess->new(
sub { return 42 },
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
internal_pipes => 0
);
$p->start();
$p->wait_stop();
is $p->is_running, 0, 'process is not running';
is $p->return_status, undef,
'process did not return nothing when internal_pipes are disabled';
$p = Mojo::IOLoop::ReadWriteProcess->new(
sub { die "Bah" },
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
internal_pipes => 0
);
$p->start();
$p->wait_stop();
is $p->is_running, 0, 'process is not running';
is $p->errored, 0, 'process did not errored, we dont catch errors anymore';
# XXX: flaky test temporarly skip it. is !!$p->exit_status, 1, 'Exit status is there';
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
set_pipes => 0,
code => sub {
print "TEST normal print\n";
print STDERR "TEST error print\n";
return "256";
})->start();
is $p->getline, undef, 'no output from pipes expected';
is $p->getline, undef, 'no output from pipes expected';
$p->wait_stop();
is $p->return_status, 256, "grab exit_status even if no pipes are set";
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
set_pipes => 1,
code => sub {
exit 100;
})->start();
$p->wait_stop();
is $p->exit_status, 100, "grab exit_status even if no pipes are set";
$p = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
separate_err => 0,
code => sub {
print STDERR "TEST error print\n" for (1 .. 6);
my $a = <STDIN>;
})->start();
like $p->stderr_all, qr/TEST error print/,
'read all from stderr, is like reading all from stdout when separate_err = 0';
$p->stop()->separate_err(1)->start();
$p->write("a");
$p->wait_stop();
like $p->stderr_all, qr/TEST error print/, 'read all from stderr works';
is $p->read_all, '', 'stdout is empty';
};
sub _number_of_process_in_group {
scalar(split "\n", qx{pgrep -g @_} or die "Unable to run pgrep: $!");
}
subtest stop_whole_process_group_gracefully => sub {
my $test_script = check_bin("$FindBin::Bin/data/simple_fork.pl");
# run the "term_trap.pl" script and its sub processes within its own
# process group
# notes: - Not using "term_trap.sh" here because bash interferes with the
# process group.
# - Set TOTAL_SLEEPTIME_DURING_KILL to a notable number of seconds
# to check whether the sub processes would actually be granted
# this number of seconds before getting killed. This is not set by
# default to avoid slowing down the CI.
my $patience = $timeout / $interval;
my $sub_process = Mojo::IOLoop::ReadWriteProcess->new(
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
max_kill_attempts => 1,
separate_err => 0,
blocking_stop => 1,
kill_whole_group => 1,
total_sleeptime_during_kill => $kill_sleeptime,
code => sub {
$SIG{TERM} = 'IGNORE';
setpgrp(0, 0);
exec($^X => $test_script);
})->start();
# wait until the sub process changes its process group
# note: Otherwise it still has the process group of this unit test and calling
# stop would also stop the test itself.
my $test_gpid = getpgrp(0);
my $sub_process_pid = $sub_process->pid;
my $sub_process_gid;
note 'waiting until process group has been created';
sleep $interval
while $test_gpid == ($sub_process_gid = getpgrp($sub_process_pid))
&& --$patience > 0;
note "test pid: $$, gpid: $test_gpid";
note "sub process pid: $sub_process_pid, gpid: $sub_process_gid";
note 'waiting until all sub processes have been forked';
sleep $interval
while _number_of_process_in_group($sub_process_gid) != 3 && --$patience > 0;
$sub_process->stop();
note 'waiting until the process group is no longer running';
sleep $interval while $sub_process->is_running && --$patience > 0;
is $sub_process->is_running, 0, 'process is shut down via kill_whole_group';
};
subtest process_debug => sub {
my $buffer;
local $ENV{MOJO_PROCESS_DEBUG} = 1;
{
# We have to unload and load it back from memory to enable debug. (the ENV value is considered only in compile-time)
open my $handle, '>', \$buffer;
local *STDERR = $handle;
delete $INC{'Mojo/IOLoop/ReadWriteProcess.pm'};
eval "no warnings; require Mojo::IOLoop::ReadWriteProcess"; ## no critic
Mojo::IOLoop::ReadWriteProcess->new(
code => sub { 1; },
kill_sleeptime => $interval,
sleeptime_during_kill => $interval
)->start()->stop();
}
like $buffer, qr/Fork: \{/,
'setting MOJO_PROCESS_DEBUG to 1 enables debug mode when forking
process';
undef $buffer;
{
open my $handle, '>', \$buffer;
local *STDERR = $handle;
delete $INC{'Mojo/IOLoop/ReadWriteProcess.pm'};
eval "no warnings; require Mojo::IOLoop::ReadWriteProcess"; ## no critic
Mojo::IOLoop::ReadWriteProcess->new(
execute => "$FindBin::Bin/data/process_check.sh",
kill_sleeptime => $interval,
sleeptime_during_kill => $interval,
)->start()->stop();
}
like $buffer, qr/Execute: .*process_check.sh/,
'setting MOJO_PROCESS_DEBUG to 1 enables debug mode when executing external process';
};
subtest 'process_args' => sub {
my $code = sub {
shift;
print "$_$/" for @_;
};
my $p = Mojo::IOLoop::ReadWriteProcess->new($code, args => '0')
->start->wait_stop();
is($p->read_all_stdout(), "0$/", '1) False scalar value was given as args.');
$p
= Mojo::IOLoop::ReadWriteProcess->new($code)->args('0')->start->wait_stop();
is($p->read_all_stdout(), "0$/", '2) False scalar value was given as args.');
$p = Mojo::IOLoop::ReadWriteProcess->new($code, args => [(0 .. 3)])
->start->wait_stop();
is($p->read_all_stdout(), "0$/1$/2$/3$/", '1) Args given as arrayref.');
$p
= Mojo::IOLoop::ReadWriteProcess->new($code)
->args([(0 .. 3)])
->start->wait_stop();
is($p->read_all_stdout(), "0$/1$/2$/3$/", '2) Args given as arrayref.');
};
subtest 'process in process' => sub {
check_bin('/bin/true');
check_bin('/bin/false');
my $p = process(
sub {
is(
process(execute => '/bin/true')
->quirkiness(1)
->start()
->wait_stop()
->exit_status(),
0,
'process(execute) from process(code) -- retval check true'
);
is(
process(execute => '/bin/false')
->quirkiness(1)
->start()
->wait_stop()
->exit_status(),
1,
'process(execute) from process(code) -- retval check false'
);
is(
process(sub { print 'sub-sub-process' })
->start()
->wait_stop()
->read_all_stdout,
'sub-sub-process',
'process(code) works from process(code)'
);
print 'DONE';
})->start()->wait_stop();
is($p->read_all_stdout(), 'DONE',
"Use ReadWriteProcess inside of ReadWriteProcess(code=>'')");
};
subtest 'execute exeption handling' => sub {
throws_ok {
process(execute => '/I/do/not/exist')->start()->wait_stop()->exit_status();
}
qr%/I/do/not/exist%, 'Execute throw exception, if executable does not exists';
my $p = process(execute => 'sleep 0.2')->start();
attempt {attempts => 20, condition => sub { defined($p->exit_status) },};
is($p->is_running(), 0, 'Process not running');
is($p->exit_status(), 0, 'Exit status is 0');
};
subtest 'SIG_CHLD handler in spawned process' => sub {
check_bin('/bin/true');
my $simple_rwp = check_bin("$FindBin::Bin/data/simple_rwp.pl");
my $sigchld_handler = check_bin("$FindBin::Bin/data/sigchld_handler.pl");
# use `$^X <script>` here, to make sure we run the same perl as the test
# was started with
my $p = process(execute => $^X)->args([$simple_rwp])->start->wait_stop;
is $p->exit_status(), 0, 'simple_rwp.pl exit with 0';
$p = process(execute => $^X)->args([$sigchld_handler])->start()->wait_stop();
is $p->exit_status(), 0, 'sigchld_handler.pl exit with 0' or do {
diag "out: " . $p->read_stdout;
diag "err: " . $p->read_stderr;
};
like($p->read_all_stdout, qr/SIG_CHLD/, "SIG_CHLD handler was executed");
};
done_testing;
|