ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/02_signals.t
Revision: 1.8
Committed: Wed Dec 29 04:16:33 2010 UTC (13 years, 6 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-5_3, rel-5_31
Changes since 1.7: +1 -1 lines
Log Message:
first round of ioasync rewrite

File Contents

# Content
1 BEGIN {
2 unless (exists $SIG{USR1}) {
3 print <<EOF;
4 1..0 # SKIP Broken perl detected, skipping tests.
5 EOF
6 exit 0;
7 }
8 }
9
10 use AnyEvent;
11 BEGIN { require AnyEvent::Impl::Perl unless $ENV{PERL_ANYEVENT_MODEL} }
12
13 $| = 1; print "1..5\n";
14
15 print "ok 1\n";
16
17 my $cv = AnyEvent->condvar;
18
19 my $error = AnyEvent->timer (after => 5, cb => sub {
20 print <<EOF;
21 Bail out! No signal caught.
22 EOF
23 exit 0;
24 });
25
26 my $sw = AnyEvent->signal (signal => 'INT', cb => sub {
27 print "ok 3\n";
28 $cv->broadcast;
29 });
30
31 print "ok 2\n";
32 kill 'INT', $$;
33 $cv->wait;
34 undef $error;
35
36 print "ok 4\n";
37
38 undef $sw;
39
40 print "ok 5\n";
41