ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/68_poe_05_dns.t
Revision: 1.4
Committed: Sat Jul 18 00:05:29 2009 UTC (14 years, 10 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-0_85
Changes since 1.3: +3 -4 lines
Log Message:
*** empty log message ***

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::POE;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::POE not found}), exit 0) } $^W = 0;
5 root 1.1 use AnyEvent::DNS;
6    
7 root 1.4 $| = 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