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.9 by root, Fri Apr 25 13:32:39 2008 UTC vs.
Revision 1.16 by root, Sat Jul 18 05:19:09 2009 UTC

1$|=1; 1use POSIX ();
2BEGIN { 2
3 print "1..7\n" 3no warnings;
4}
5 4
6use AnyEvent; 5use AnyEvent;
7use AnyEvent::Impl::Perl; 6use AnyEvent::Impl::Perl;
8 7
9print STDERR <<EOF; 8BEGIN {
9 # check for broken perls
10 if ($^O =~ /mswin32/i) {
11 my $ok;
12 local $SIG{CHLD} = sub { $ok = 1 };
13 kill 'CHLD', 0;
10 14
11If the following test hangs for a long time you either found a bug in 15 unless ($ok) {
12AnyEvent or, more likely, you have a defective perl (most windows perl 16 print <<EOF;
13distros are broken, cygwin perl works). If you do not rely on child 171..0 # 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 of AnyEvent, but child watchers WILL NOT WORK.
14handlers you can force the installation of this module and the rest will
15likely work. Otherwise upgrading to a working perl is recommended.
16EOF 18EOF
19 exit 0;
20 }
21 }
22}
17 23
18print "ok 1\n"; 24$| = 1; print "1..50\n";
19 25
20AnyEvent::detect; # force-load event model 26for my $it ("", 1, 2, 3, 4) {
27 $AnyEvent::MAX_SIGNAL_LATENCY = 1;
21 28
22my $pid = fork; 29 print "ok ${it}1\n";
23 30
31 AnyEvent::detect; # force-load event model
32
33 my $pid = fork;
34
24defined $pid or die "unable to fork"; 35 defined $pid or die "unable to fork";
25 36
26# work around Tk bug until it has been fixed. 37# work around Tk bug until it has been fixed.
27#my $timer = AnyEvent->timer (after => 2, cb => sub { }); 38#my $timer = AnyEvent->timer (after => 2, cb => sub { });
28 39
29my $cv = AnyEvent->condvar; 40 my $cv = AnyEvent->condvar;
30 41
31unless ($pid) { 42 unless ($pid) {
32 print "ok 2\n"; 43 print "ok ${it}2\n";
33 exit 3; 44 POSIX::_exit 3;
34} 45 }
35 46
36my $w = AnyEvent->child (pid => $pid, cb => sub { 47 my $w = AnyEvent->child (pid => $pid, cb => sub {
37 print $pid == $_[0] ? "" : "not ", "ok 3\ # $pid == $_[0]\n"; 48 print $pid == $_[0] ? "" : "not ", "ok ${it}3\ # $pid == $_[0]\n";
38 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";
39 $cv->broadcast; 50 $cv->broadcast;
40}); 51 });
41 52
42$cv->wait; 53 $cv->wait;
43 54
44my $pid2 = fork || exit 7; 55 my $pid2 = fork || POSIX::_exit 7;
45 56
46my $cv2 = AnyEvent->condvar; 57 my $cv2 = AnyEvent->condvar;
47 58
48my $w2 = AnyEvent->child (pid => 0, cb => sub { 59 my $w2 = AnyEvent->child (pid => 0, cb => sub {
49 print $pid2 == $_[0] ? "" : "not ", "ok 5 # $pid2 == $_[0]\n"; 60 print $pid2 == $_[0] ? "" : "not ", "ok ${it}5 # $pid2 == $_[0]\n";
50 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";
51 $cv2->broadcast; 62 $cv2->broadcast;
52}); 63 });
53 64
54my $error = AnyEvent->timer (after => 5, cb => sub { 65 my $error = AnyEvent->timer (after => 5, cb => sub {
55 print <<EOF; 66 print <<EOF;
56Bail 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";
57EOF 68EOF
58 exit 0; 69 exit 0;
59}); 70 });
60 71
61$cv2->wait; 72 $cv2->wait;
62 73
63print "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}
64 79
65 80
66 81
67 82

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines