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

Comparing AnyEvent/t/64_glib_03_child.t (file contents):
Revision 1.4 by root, Sat Jul 18 00:05:29 2009 UTC vs.
Revision 1.5 by root, Sat Jul 18 05:19:09 2009 UTC

1use POSIX (); 1use POSIX ();
2
3no warnings;
2 4
3use AnyEvent; 5use AnyEvent;
4BEGIN { eval q{use AnyEvent::Impl::Glib;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::Glib not found}), exit 0) } 6BEGIN { eval q{use AnyEvent::Impl::Glib;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::Glib not found}), exit 0) }
5 7
6BEGIN { 8BEGIN {
17 exit 0; 19 exit 0;
18 } 20 }
19 } 21 }
20} 22}
21 23
22$| = 1; print "1..7\n"; 24$| = 1; print "1..50\n";
23 25
26for my $it ("", 1, 2, 3, 4) {
24$AnyEvent::MAX_SIGNAL_LATENCY = 1; 27 $AnyEvent::MAX_SIGNAL_LATENCY = 1;
25 28
26print "ok 1\n"; 29 print "ok ${it}1\n";
27 30
28AnyEvent::detect; # force-load event model 31 AnyEvent::detect; # force-load event model
29 32
30my $pid = fork; 33 my $pid = fork;
31 34
32defined $pid or die "unable to fork"; 35 defined $pid or die "unable to fork";
33 36
34# work around Tk bug until it has been fixed. 37# work around Tk bug until it has been fixed.
35#my $timer = AnyEvent->timer (after => 2, cb => sub { }); 38#my $timer = AnyEvent->timer (after => 2, cb => sub { });
36 39
37my $cv = AnyEvent->condvar; 40 my $cv = AnyEvent->condvar;
38 41
39unless ($pid) { 42 unless ($pid) {
40 print "ok 2\n"; 43 print "ok ${it}2\n";
41 POSIX::_exit 3; 44 POSIX::_exit 3;
42} 45 }
43 46
44my $w = AnyEvent->child (pid => $pid, cb => sub { 47 my $w = AnyEvent->child (pid => $pid, cb => sub {
45 print $pid == $_[0] ? "" : "not ", "ok 3\ # $pid == $_[0]\n"; 48 print $pid == $_[0] ? "" : "not ", "ok ${it}3\ # $pid == $_[0]\n";
46 print 3 == ($_[1] >> 8) ? "" : "not ", "ok 4 # 3 == $_[1] >> 8 ($_[1])\n"; 49 print 3 == ($_[1] >> 8) ? "" : "not ", "ok ${it}4 # 3 == $_[1] >> 8 ($_[1])\n";
47 $cv->broadcast; 50 $cv->broadcast;
48}); 51 });
49 52
50$cv->wait; 53 $cv->wait;
51 54
52my $pid2 = fork || POSIX::_exit 7; 55 my $pid2 = fork || POSIX::_exit 7;
53 56
54my $cv2 = AnyEvent->condvar; 57 my $cv2 = AnyEvent->condvar;
55 58
56my $w2 = AnyEvent->child (pid => 0, cb => sub { 59 my $w2 = AnyEvent->child (pid => 0, cb => sub {
57 print $pid2 == $_[0] ? "" : "not ", "ok 5 # $pid2 == $_[0]\n"; 60 print $pid2 == $_[0] ? "" : "not ", "ok ${it}5 # $pid2 == $_[0]\n";
58 print 7 == ($_[1] >> 8) ? "" : "not ", "ok 6 # 7 == $_[1] >> 8 ($_[1])\n"; 61 print 7 == ($_[1] >> 8) ? "" : "not ", "ok ${it}6 # 7 == $_[1] >> 8 ($_[1])\n";
59 $cv2->broadcast; 62 $cv2->broadcast;
60}); 63 });
61 64
62my $error = AnyEvent->timer (after => 5, cb => sub { 65 my $error = AnyEvent->timer (after => 5, cb => sub {
63 print <<EOF; 66 print <<EOF;
64Bail 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"; 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";
65EOF 68EOF
66 exit 0; 69 exit 0;
67}); 70 });
68 71
69$cv2->wait; 72 $cv2->wait;
70 73
71print "ok 7\n"; 74 print "ok ${it}7\n";
75 print "ok ${it}8\n";
76 print "ok ${it}9\n";
77 print "ok ", $it*10+10, "\n";
78}
72 79
73 80
74 81
75 82

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines