From 630048eb06ae889110efb312aeac87ee5d193b54 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Wed, 14 Oct 2009 11:11:03 +0200 Subject: [PATCH] Support::Files auf bin/mozilla angepasst und Bugzillaspezifische Tests entfernt. --- t/001compile.t | 21 ++------------------- t/Support/Files.pm | 1 + 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/t/001compile.t b/t/001compile.t index 1053a6b07..a81cd81de 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -27,16 +27,14 @@ use strict; use lib 't'; -use lib '../modules/override'; -use lib '../modules/fallback'; use Support::Files; use Test::More tests => scalar(@Support::Files::testitems); # Need this to get the available driver information -use DBI; -my @DBI_drivers = DBI->available_drivers; +#use DBI; +#my @DBI_drivers = DBI->available_drivers; # Bugzilla requires Perl 5.8.0 now. Checksetup will tell you this if you run it, but # it tests it in a polite/passive way that won't make it fail at compile time. We'll @@ -67,21 +65,6 @@ foreach my $file (@testitems) { $file =~ s/\s.*$//; # nuke everything after the first space (#comment) next if (!$file); # skip null entries - # Skip mod_perl.pl in all cases. It doesn't compile correctly from the command line. - if ($file eq 'mod_perl.pl') { - ok(1, "Skipping mod_perl.pl"); - next; - } - - # Check that we have a DBI module to support the DB, if this is a database - # module (but not Schema) - if ($file =~ m#Bugzilla/DB/([^/]+)\.pm$# && $file ne "Bugzilla/DB/Schema.pm") { - if (!grep(lc($_) =~ /$1/i, @DBI_drivers)) { - ok(1,$file." - Skipping, as the DBD module not installed"); - next; - } - } - open (FILE,$file); my $bang = ; close (FILE); diff --git a/t/Support/Files.pm b/t/Support/Files.pm index e485561a3..f325a0ae8 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -39,6 +39,7 @@ use File::Find; @files = glob('*'); find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, 'SL'); +find(sub { push(@files, $File::Find::name) if $_ =~ /\.pl$/;}, 'bin/mozilla'); sub have_pkg { my ($pkg) = @_; -- 2.20.1