
marvin at rectangular
Sep 10, 2008, 12:04 PM
Post #1 of 1
(2415 views)
Permalink
|
|
r3861 - in trunk/perl: . buildlib/Lucy
|
|
Author: creamyg Date: 2008-09-10 12:04:00 -0700 (Wed, 10 Sep 2008) New Revision: 3861 Modified: trunk/perl/Build.PL trunk/perl/buildlib/Lucy/Build.pm Log: Kill off dependency on TAP::Harness for now. If we need to invoke tests through a mechanism other than a t/*.t file in the future, we can resurrect it. Modified: trunk/perl/Build.PL =================================================================== --- trunk/perl/Build.PL 2008-09-10 18:04:01 UTC (rev 3860) +++ trunk/perl/Build.PL 2008-09-10 19:04:00 UTC (rev 3861) @@ -48,7 +48,6 @@ 'ExtUtils::CBuilder' => 0, 'ExtUtils::ParseXS' => 0, 'Parse::RecDescent' => 0, - 'TAP::Harness' => 3.12, }, create_makefile_pl => 'passthrough', add_to_cleanup => Modified: trunk/perl/buildlib/Lucy/Build.pm =================================================================== --- trunk/perl/buildlib/Lucy/Build.pm 2008-09-10 18:04:01 UTC (rev 3860) +++ trunk/perl/buildlib/Lucy/Build.pm 2008-09-10 19:04:00 UTC (rev 3861) @@ -460,21 +460,6 @@ $self->SUPER::ACTION_code; } -sub ACTION_test { - my $self = shift; - $self->dispatch('code'); - require TAP::Harness; - my $harness = TAP::Harness->new( - { verbosity => $self->verbose, - lib => [. - catdir( $self->blib, 'arch' ), - catdir( $self->blib, 'lib' ), - ], - } - ); - $harness->runtests( @{ $self->test_files } ); -} - # copied from Module::Build::Base.pm, added exclude '#' and follow symlinks sub rscan_dir { my ( $self, $dir, $pattern ) = @_; _______________________________________________ kinosearch-commits mailing list kinosearch-commits [at] rectangular http://www.rectangular.com/mailman/listinfo/kinosearch-commits
|