ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/t/00_load.t
Revision: 1.10
Committed: Sun Nov 11 02:01:01 2007 UTC (16 years, 7 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-0_8, rel-0_9, rel-1_1, rel-1_3, rel-1_2, rel-1_5, rel-1_4
Changes since 1.9: +2 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 BEGIN { $| = 1; print "1..3\n"; }
2
3 $^W = 0; # work around some bugs in perl
4
5 print eval { require EV } ? "" : "not ", "ok 1 # $@\n";
6 if ($^O eq "linux") {
7 print eval { require EV::DNS } ? "" : "not ", "ok 2 # $@\n";
8 } else {
9 print "ok 2 # skipped on non-gnu/linux\n";
10 }
11 print eval { require EV::MakeMaker } ? "" : "not ", "ok 3 # $@\n";