ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/61_fltk_01_basic.t
Revision: 1.1
Committed: Fri Aug 12 18:41:26 2011 UTC (12 years, 11 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-6_0, rel-6_01
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use AnyEvent;
2    
3     BEGIN { $ENV{PERL_ANYEVENT_LOOP_TESTS} or ((print qq{1..0 # SKIP PERL_ANYEVENT_LOOP_TESTS not true\n}), exit 0) }
4     BEGIN { eval q{use AnyEvent::Impl::FLTK2;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::FLTK2 not loadable\n}), exit 0) }
5    
6    
7    
8     $| = 1; print "1..6\n";
9    
10     print "ok 1\n";
11    
12     my $cv = AnyEvent->condvar;
13    
14     print "ok 2\n";
15    
16     my $timer1 = AnyEvent->timer (after => 0.1, cb => sub { print "ok 5\n"; $cv->broadcast });
17    
18     print "ok 3\n";
19    
20     AnyEvent->timer (after => 0.01, cb => sub { print "not ok 5\n" });
21    
22     print "ok 4\n";
23    
24     $cv->wait;
25    
26     print "ok 6\n";
27