ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/03_child.t
(Generate patch)

Comparing AnyEvent/t/03_child.t (file contents):
Revision 1.18 by root, Mon Jul 20 06:00:42 2009 UTC vs.
Revision 1.21 by root, Tue Aug 2 22:07:16 2011 UTC

17 } 17 }
18 } 18 }
19} 19}
20 20
21use AnyEvent; 21use AnyEvent;
22use AnyEvent::Impl::Perl; 22BEGIN { require AnyEvent::Impl::Perl unless $ENV{PERL_ANYEVENT_MODEL} }
23 23
24$| = 1; print "1..50\n"; 24$| = 1; print "1..50\n";
25 25
26$AnyEvent::MAX_SIGNAL_LATENCY = 0.2; 26$AnyEvent::MAX_SIGNAL_LATENCY = 0.2;
27 27
32 32
33 my $pid = fork; 33 my $pid = fork;
34 34
35 defined $pid or die "unable to fork"; 35 defined $pid or die "unable to fork";
36 36
37# work around Tk bug until it has been fixed. 37 # work around Tk bug until it has been fixed.
38#my $timer = AnyEvent->timer (after => 2, cb => sub { }); 38 #my $timer = AnyEvent->timer (after => 2, cb => sub { });
39 39
40 my $cv = AnyEvent->condvar; 40 my $cv = AnyEvent->condvar;
41 41
42 unless ($pid) { 42 unless ($pid) {
43 print "ok ${it}2\n"; 43 print "ok ${it}2\n";
48 print $pid == $_[0] ? "" : "not ", "ok ${it}3\ # $pid == $_[0]\n"; 48 print $pid == $_[0] ? "" : "not ", "ok ${it}3\ # $pid == $_[0]\n";
49 print 3 == ($_[1] >> 8) ? "" : "not ", "ok ${it}4 # 3 == $_[1] >> 8 ($_[1])\n"; 49 print 3 == ($_[1] >> 8) ? "" : "not ", "ok ${it}4 # 3 == $_[1] >> 8 ($_[1])\n";
50 $cv->broadcast; 50 $cv->broadcast;
51 }); 51 });
52 52
53 $cv->wait; 53 $cv->recv;
54 54
55 my $pid2 = fork || POSIX::_exit 7; 55 my $pid2 = fork || POSIX::_exit 7;
56 56
57 my $cv2 = AnyEvent->condvar; 57 my $cv2 = AnyEvent->condvar;
58 58
59 # Glib is the only model that doesn't support pid == 0
60 my $pid0 = $AnyEvent::MODEL eq "AnyEvent::Impl::Glib" ? $pid2 : 0;
61
59 my $w2 = AnyEvent->child (pid => 0, cb => sub { 62 my $w2 = AnyEvent->child (pid => $pid0, cb => sub {
60 print $pid2 == $_[0] ? "" : "not ", "ok ${it}5 # $pid2 == $_[0]\n"; 63 print $pid2 == $_[0] ? "" : "not ", "ok ${it}5 # $pid2 == $_[0]\n";
61 print 7 == ($_[1] >> 8) ? "" : "not ", "ok ${it}6 # 7 == $_[1] >> 8 ($_[1])\n"; 64 print 7 == ($_[1] >> 8) ? "" : "not ", "ok ${it}6 # 7 == $_[1] >> 8 ($_[1])\n";
62 $cv2->broadcast; 65 $cv2->broadcast;
63 }); 66 });
64 67
67Bail 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 do not rely on child watchers, or you could upgrade to a working version of Perl for your platform.\n"; 70Bail 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 do not rely on child watchers, or you could upgrade to a working version of Perl for your platform.\n";
68EOF 71EOF
69 exit 0; 72 exit 0;
70 }); 73 });
71 74
72 $cv2->wait; 75 $cv2->recv;
73 76
74 print "ok ${it}7\n"; 77 print "ok ${it}7\n";
75 print "ok ${it}8\n"; 78 print "ok ${it}8\n";
76 print "ok ${it}9\n"; 79 print "ok ${it}9\n";
77 print "ok ", $it*10+10, "\n"; 80 print "ok ", $it*10+10, "\n";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines