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

Comparing AnyEvent/t/04_condvar.t (file contents):
Revision 1.4 by root, Wed Dec 29 04:16:34 2010 UTC vs.
Revision 1.5 by root, Tue Aug 2 20:02:45 2011 UTC

25 print "ok 3\n"; 25 print "ok 3\n";
26 $cv->send (7, 5); 26 $cv->send (7, 5);
27 }); 27 });
28 28
29 print "ok 2\n"; 29 print "ok 2\n";
30 $cv->wait; 30 $cv->recv;
31 print "ok 8\n"; 31 print "ok 8\n";
32 32
33 my @x = $cv->recv; 33 my @x = $cv->recv;
34 print $x[1] == 5 ? "" : "not ", "ok 9 # $x[1] == 5\n"; 34 print $x[1] == 5 ? "" : "not ", "ok 9 # $x[1] == 5\n";
35} 35}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines