AnyEvent-Impl-NSRunLoop
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;
use AnyEvent::Impl::NSRunLoop;
$| = 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\n";
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->wait;
my $pid2 = fork || POSIX::_exit 7;
my $cv2 = AnyEvent->condvar;
my $w2 = AnyEvent->child (pid => 0, 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->wait;
print "ok ${it}7\n";
print "ok ${it}8\n";
print "ok ${it}9\n";
print "ok ", $it*10+10, "\n";
}
( run in 0.744 second using v1.01-cache-2.11-cpan-140bd7fdf52 )