You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@perl.apache.org by "Philippe M. Chiasson" <go...@ectoplasm.org> on 2004/10/20 03:10:14 UTC

[RELEASE CANDIDATE} Apache::Test 1.15 RC1

a release candidate for Apache::Test 1.15 is now available for testing.

please grab the candidate from

    http://www.apache.org/~gozer/mp2/mod_perl-1.99_17/Apache-Test-1.15-RC1.tar.gz

please take the time to excercise the candidate through all your existing
applications that use Apache-Test and report back successes or failures.

--The mod_perl Development Team

Changes since 1.14:

add new test_config make target, equivalent to t/TEST -conf,
and make it a prerequisite for the cmodules make target.  now
you can 'make cmodules' to build the things in c-modules/
without running t/TEST -conf first.  [Geoffrey Young]

add -withtestmore import action, which allows Test::More >= 0.49
to replace Test.pm as the engine for server-side tests
[Geoffrey Young]

add automatic core dump backtrace generation in t/REPORT if
Devel::GDB is installed [Gozer]

add 'testcover' make target for running tests with Devel::Cover
[Geoffrey Young]

--------------------------------------------------------------------------------
Philippe M. Chiasson m/gozer\@(apache|cpan|ectoplasm)\.org/ GPG KeyID : 88C3A5A5
http://gozer.ectoplasm.org/     F9BF E0C2 480E 7680 1AE5 3631 CB32 A107 88C3A5A5

Re: [RELEASE CANDIDATE} Apache::Test 1.15 RC1

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.

Geoffrey Young wrote:
> 
> Philippe M. Chiasson wrote:
> 
>>a release candidate for Apache::Test 1.15 is now available for testing.
> 
> 
> any way to sneak in this minor patch?  it fixes cases where there are
> multiple all.t files present (such as t/foo/all.t and t/bar/all.t) and more
> than one fail - currently directories are properly ignored but only the last
> directory's all.t file is run and shown in the output because prior failing
> all.t files are (improperly) pruned along with all the other files in the
> directory.

Just got a message from Geoff (he's not online at the moment), and he told me
he changed his mind, and would rather wait for the A-T release to be out before
applying this patch. So, let's leave it up to him to integrate once 1.15 is out.

> --Geoff
> 
> 
> ------------------------------------------------------------------------
> 
> Index: lib/Apache/TestHarness.pm
> ===================================================================
> RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestHarness.pm,v
> retrieving revision 1.20
> diff -u -r1.20 TestHarness.pm
> --- lib/Apache/TestHarness.pm	17 Sep 2004 18:24:13 -0000	1.20
> +++ lib/Apache/TestHarness.pm	20 Oct 2004 04:42:01 -0000
> @@ -116,7 +116,7 @@
>          if (m:\Wall\.t$:) {
>              unless ($self->run_t($_)) {
>                  $skip_dirs{$dir} = 1;
> -                @new_tests = grep { not $skip_dirs{dirname $_} } @new_tests;
> +                @new_tests = grep { m:\Wall\.t$: || not $skip_dirs{dirname $_} } @new_tests;
>                  push @new_tests, $_;
>              }
>          }

-- 
--------------------------------------------------------------------------------
Philippe M. Chiasson m/gozer\@(apache|cpan|ectoplasm)\.org/ GPG KeyID : 88C3A5A5
http://gozer.ectoplasm.org/     F9BF E0C2 480E 7680 1AE5 3631 CB32 A107 88C3A5A5

Re: [RELEASE CANDIDATE} Apache::Test 1.15 RC1

Posted by Geoffrey Young <ge...@modperlcookbook.org>.

Philippe M. Chiasson wrote:
> a release candidate for Apache::Test 1.15 is now available for testing.

any way to sneak in this minor patch?  it fixes cases where there are
multiple all.t files present (such as t/foo/all.t and t/bar/all.t) and more
than one fail - currently directories are properly ignored but only the last
directory's all.t file is run and shown in the output because prior failing
all.t files are (improperly) pruned along with all the other files in the
directory.

--Geoff