File: TEST.PL

package info (click to toggle)
spamassassin 4.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,268 kB
  • sloc: perl: 88,850; ansic: 5,193; sh: 3,737; javascript: 339; sql: 295; makefile: 209; python: 49
file content (19 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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