AnyEvent
view release on metacpan or search on metacpan
t/03_child.t view on Meta::CPAN
use POSIX ();
no warnings;
BEGIN {
# check for broken perls
if ($^O =~ /mswin32/i) {
my $ok;
local $SIG{CHLD} = sub { $ok = 1 };
kill 'CHLD', 0;
unless ($ok) {
print <<EOF;
1..0 # SKIP Your perl interpreter is badly BROKEN. Child watchers will not work, ever. Try upgrading to a newer perl or a working perl (cygwin's perl is known to work). If that is not an option, you should be able to use the remaining functionality o...
EOF
exit 0;
}
}
}
use AnyEvent;
BEGIN { require AnyEvent::Impl::Perl unless $ENV{PERL_ANYEVENT_MODEL} }
$| = 1; print "1..50\n";
$AnyEvent::MAX_SIGNAL_LATENCY = 0.2;
for my $it ("", 1, 2, 3, 4) {
print "ok ${it}1\n";
AnyEvent::detect; # force-load event model
my $pid = fork;
defined $pid or die "unable to fork";
# work around Tk bug until it has been fixed.
#my $timer = AnyEvent->timer (after => 2, cb => sub { });
my $cv = AnyEvent->condvar;
unless ($pid) {
print "ok ${it}2 # child $$\n";
# POE hits a race condition when the child dies too quickly
# because it checks for child exit before installing the signal handler.
# seen in version 1.352 - earlier versions had the same bug, but
# polled for child exits regularly, so only caused a delay.
sleep 1 if $AnyEvent::MODEL eq "AnyEvent::Impl::POE";
POSIX::_exit 3;
}
my $w = AnyEvent->child (pid => $pid, cb => sub {
print $pid == $_[0] ? "" : "not ", "ok ${it}3\ # $pid == $_[0]\n";
print 3 == ($_[1] >> 8) ? "" : "not ", "ok ${it}4 # 3 == $_[1] >> 8 ($_[1])\n";
$cv->broadcast;
});
$cv->recv;
my $pid2 = fork || do {
sleep 1 if $AnyEvent::MODEL eq "AnyEvent::Impl::POE";
POSIX::_exit 7;
};
my $cv2 = AnyEvent->condvar;
# Glib is the only model that doesn't support pid == 0
my $pid0 = $AnyEvent::MODEL eq "AnyEvent::Impl::Glib" ? $pid2 : 0;
my $w2 = AnyEvent->child (pid => $pid0, cb => sub {
print $pid2 == $_[0] ? "" : "not ", "ok ${it}5 # $pid2 == $_[0]\n";
print 7 == ($_[1] >> 8) ? "" : "not ", "ok ${it}6 # 7 == $_[1] >> 8 ($_[1])\n";
$cv2->broadcast;
});
my $error = AnyEvent->timer (after => 5, cb => sub {
print <<EOF;
Bail out! No child exit detected. This is either a bug in AnyEvent or a bug in your Perl (mostly some windows distributions suffer from that): child watchers might not work properly on this platform. You can force installation of this module if you d...
EOF
exit 0;
});
$cv2->recv;
print "ok ${it}7\n";
print "ok ${it}8\n";
print "ok ${it}9\n";
print "ok ", $it*10+10, "\n";
}
( run in 1.413 second using v1.01-cache-2.11-cpan-39bf76dae61 )