ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/02_signals.t
Revision: 1.4
Committed: Tue Apr 22 05:12:19 2008 UTC (16 years, 2 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-3_41, rel-3_5, rel-3_4, rel-3_3, rel-3_2, rel-3_12
Changes since 1.3: +23 -6 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 $|=1;
2 BEGIN {
3 print "1..5\n";
4 }
5
6 use AnyEvent;
7 use AnyEvent::Impl::Perl;
8
9 print STDERR <<EOF;
10
11 If the following test hangs for a long time or terminates with a signal
12 you either found a bug in AnyEvent or, more likely, you have a defective
13 perl (most windows perl distros are broken, cygwin perl works). If you do
14 not rely on signal handlers you can force the installation of this module
15 and the rest will likely work. Otherwise upgrading to a working perl is
16 recommended.
17 EOF
18
19 print "ok 1\n";
20
21 my $cv = AnyEvent->condvar;
22
23 my $error = AnyEvent->timer (after => 5, cb => sub {
24 print <<EOF;
25 Bail out! No signal caught.
26 EOF
27 exit 0;
28 });
29
30 my $sw = AnyEvent->signal (signal => 'INT', cb => sub {
31 print "ok 3\n";
32 $cv->broadcast;
33 });
34
35 print "ok 2\n";
36 kill 'INT', $$;
37 $cv->wait;
38 undef $error;
39
40 print "ok 4\n";
41
42 undef $sw;
43
44 print "ok 5\n";
45