You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Geoffrey Young <ge...@modperlcookbook.org> on 2004/06/24 15:30:29 UTC

[RELEASE CANDIDATE] Apache-Test-1.12

a release candidate for Apache-Test 1.12 is now available.

  http://perl.apache.org/~geoff/Apache-Test-1.12-dev.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.

--Geoff

Changes since 1.11:

add -no-httpd runtime option to allow tests to run without configuring,
starting, or stopping Apache.  this essentially provides a direct
Test::Harness interface through t/TEST, useful for running single tests
that do not depend on Apache.  [Geoffrey Young]


Add support for Module::Build, with a new module: Apache::TestMB (a
"clone" of Apache::TestMM for ExtUtils::MakeMaker). [David Wheeler
<da...@kineticode.com>]


switch the order of arguments in t_cmp() and t_is_equal() so that
the order matches Test::More::is() and other Test::More functions.
the new call is: t_cmp($received, $expected, $comment);  support
for $expected as the first argument marked as deprecated and will
be removed in the course of the next few release cycles.
[Geoffrey Young]


add skip_reason() to Apache::Test, which provides a mechanism for
user-specified skip messages [Geoffrey Young]


Tweak Apache::TestRun to support test filenames starting with
/(.\\)?t\\/ prefixes, windows style (needed for t/SMOKE) [Steve Hay]

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html


Re: [RELEASE CANDIDATE] Apache-Test-1.12

Posted by Geoffrey Young <ge...@modperlcookbook.org>.
>> Commenting out lines 669 and 1696 make it work fine. I remember having
>> this discussion a few months back but did not find a solution.
>> Apparently it is still an issue.
> 
> 
> Yup, but it was an issue with previous A-T releases as well, so it's not
> a showstopper. Someone who can reproduce this problem ought to find a
> fix. Commenting out code is not quite a fix.

agreed.

if nobody reports anything new over the weekend I'll release on monday so we
get the TestMB stuff out there.

--Geoff

Re: [RELEASE CANDIDATE] Apache-Test-1.12

Posted by Stas Bekman <st...@stason.org>.
William McKee wrote:
> On Thu, Jun 24, 2004 at 02:35:39PM -0400, William McKee wrote:
> 
>>On Thu, Jun 24, 2004 at 09:30:29AM -0400, Geoffrey Young wrote:
>>
>>>please take the time to excercise the candidate through all your existing
>>>applications that use Apache-Test and report back successes or failures.
>>
>>Looks good for me.
> 
> 
> Ooops, spoke too soon again. I'm still having problems with TestRun.pm
> in Windows XP. Here's the output:
> 
>   [Thu Jun 24 17:21:56 2004] [error] [client 127.0.0.1] Statement unlikely to be reached at c:\TigerCub\perl5\5.8.3/Apache/TestRun.pm line 669.
>   Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/TestServer.pm line 25.
>   BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/TestServer.pm line 25.
>   Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/TestConfig.pm line 51.
>   BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/TestConfig.pm line 51.
>   Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/Test.pm line 23.
>   BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/Test.pm line 23.
>   Compilation failed in require at C:\TigerCub\t\response/Xfer/_get_next_valid_candidate.pm line 11.
>   BEGIN failed--compilation aborted at C:\TigerCub\t\response/Xfer/_get_next_valid_candidate.pm line 11.
>   Compilation failed in require at (eval 6) line 3.
> 
> 
> Commenting out lines 669 and 1696 make it work fine. I remember having
> this discussion a few months back but did not find a solution.
> Apparently it is still an issue.

Yup, but it was an issue with previous A-T releases as well, so it's not a 
showstopper. Someone who can reproduce this problem ought to find a fix. 
Commenting out code is not quite a fix.


-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Re: [RELEASE CANDIDATE] Apache-Test-1.12

Posted by William McKee <wi...@knowmad.com>.
On Thu, Jun 24, 2004 at 02:35:39PM -0400, William McKee wrote:
> On Thu, Jun 24, 2004 at 09:30:29AM -0400, Geoffrey Young wrote:
> > please take the time to excercise the candidate through all your existing
> > applications that use Apache-Test and report back successes or failures.
> 
> Looks good for me.

Ooops, spoke too soon again. I'm still having problems with TestRun.pm
in Windows XP. Here's the output:

  [Thu Jun 24 17:21:56 2004] [error] [client 127.0.0.1] Statement unlikely to be reached at c:\TigerCub\perl5\5.8.3/Apache/TestRun.pm line 669.
  Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/TestServer.pm line 25.
  BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/TestServer.pm line 25.
  Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/TestConfig.pm line 51.
  BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/TestConfig.pm line 51.
  Compilation failed in require at c:\TigerCub\perl5\5.8.3/Apache/Test.pm line 23.
  BEGIN failed--compilation aborted at c:\TigerCub\perl5\5.8.3/Apache/Test.pm line 23.
  Compilation failed in require at C:\TigerCub\t\response/Xfer/_get_next_valid_candidate.pm line 11.
  BEGIN failed--compilation aborted at C:\TigerCub\t\response/Xfer/_get_next_valid_candidate.pm line 11.
  Compilation failed in require at (eval 6) line 3.


Commenting out lines 669 and 1696 make it work fine. I remember having
this discussion a few months back but did not find a solution.
Apparently it is still an issue.


William

-- 
Knowmad Services Inc.
http://www.knowmad.com

Re: [RELEASE CANDIDATE] Apache-Test-1.12

Posted by William McKee <wi...@knowmad.com>.
On Thu, Jun 24, 2004 at 09:30:29AM -0400, Geoffrey Young wrote:
> please take the time to excercise the candidate through all your existing
> applications that use Apache-Test and report back successes or failures.

Looks good for me.


William

-- 
Knowmad Services Inc.
http://www.knowmad.com