blob: f18254a77a6f7db22098f749f4f58a6a484ee449 [file] [log] [blame]
package TestAPR::threadrwlock;
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache2::Const -compile => 'OK';
use TestAPRlib::threadrwlock;
sub handler {
my $r = shift;
my $tests = TestAPRlib::threadrwlock::num_of_tests();
plan $r, tests => $tests, need_threads;
TestAPRlib::threadrwlock::test();
Apache2::Const::OK;
}
1;