ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Linux-AIO/t/00_load.t
Revision: 1.1
Committed: Tue Apr 2 14:01:29 2002 UTC (22 years, 2 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-1_9, rel-1_8, rel-1_71, rel-1_5, rel-1_6, HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 BEGIN { $| = 1; print "1..3\n"; }
2     END {print "not ok 1\n" unless $loaded;}
3     use Linux::AIO;
4     $loaded = 1;
5     print "ok 1\n";
6     Linux::AIO::min_parallel(10);
7     print "ok 2\n";
8     Linux::AIO::max_parallel(0);
9     print "ok 3\n";
10