The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use warnings FATAL => 'all';
use Apache::Const -compile => 'OK';
sub handler {
my $r = shift;
my $tests = TestAPRlib::threadmutex::num_of_tests();
plan $r, tests => $tests, need_threads;
TestAPRlib::threadmutex::test();
Apache::OK;
}
1;