stas 01/12/10 21:18:49
Modified: perl-framework Makefile.PL
Added: perl-framework/t SMOKE.PL
Log:
- smoking testing now works with httpd-test/perl-framework
Revision Changes Path
1.1 httpd-test/perl-framework/t/SMOKE.PL
Index: SMOKE.PL
===================================================================
#!perl
use strict;
use warnings FATAL => 'all';
use FindBin;
use lib "$FindBin::Bin/../Apache-Test/lib";
use lib "$FindBin::Bin/../lib";
use Apache::TestSmoke ();
Apache::TestSmoke->new(@ARGV)->run;
1.8 +3 -4 httpd-test/perl-framework/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Makefile.PL,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Makefile.PL 2001/10/16 20:33:10 1.7
+++ Makefile.PL 2001/12/11 05:18:49 1.8
@@ -10,19 +10,18 @@
use File::Find qw(finddepth);
-my @scripts;
+my @scripts = qw(t/TEST t/SMOKE);
finddepth(sub {
return unless /(.*?\.pl)\.PL$/;
push @scripts, "$File::Find::dir/$1";
}, '.');
+Apache::TestMM::filter_args();
+
for my $script (@scripts) {
Apache::TestMM::generate_script($script);
}
-
-Apache::TestMM::filter_args();
-Apache::TestMM::generate_script('t/TEST');
WriteMakefile(
NAME => 'httpd-test',