The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl
use strict;
use warnings FATAL => 'all';

use lib qw(lib);

use Apache::TestRunPerl ();

Apache::TestRunPerl->new->run(@ARGV);

{
	no warnings 'redefine';

#	sub Apache::TestRun::pre_configure {
#		Apache::TestConfig::autoconfig_skip_module_add(qr(.));
#	}
}

# vim: ts=4 sw=4 noet