ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/66_ioasync_05_dns.t
Revision: 1.4
Committed: Mon Jul 20 22:39:57 2009 UTC (14 years, 10 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-4_86, rel-4_881, rel-4_88, rel-4_91, rel-4_9
Changes since 1.3: +1 -1 lines
Log Message:
4.86

File Contents

# User Rev Content
1 root 1.1 # we avoid complicated tests here because some systems will
2     # not have working DNS
3    
4 root 1.4 BEGIN { eval q{use AnyEvent::Impl::IOAsync;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::IOAsync not loadable}), exit 0) } use IO::Async::Loop; AnyEvent::Impl::IOAsync::set_loop new IO::Async::Loop;
5 root 1.1 use AnyEvent::DNS;
6    
7 root 1.3 $| = 1; print "1..5\n";
8    
9 root 1.1 print "ok 1\n";
10    
11     AnyEvent::DNS::resolver;
12    
13     print "ok 2\n";
14    
15     # make sure we timeout faster
16     AnyEvent::DNS::resolver->{timeout} = [0.5];
17     AnyEvent::DNS::resolver->_compile;
18    
19     print "ok 3\n";
20    
21     my $cv = AnyEvent->condvar;
22    
23     AnyEvent::DNS::a "www.google.de", sub {
24     print "ok 4 # www.google.de => @_\n";
25     $cv->send;
26     };
27    
28     $cv->recv;
29    
30     print "ok 5\n";
31