You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/07/09 11:13:08 UTC

svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Author: pgollucci
Date: Sun Jul  9 02:13:08 2006
New Revision: 420268

URL: http://svn.apache.org/viewvc?rev=420268&view=rev
Log:
I haven't the foggiest what makes this work now since
we were specifically skipping it for some reason, but it works now.

I've checked all of these combinations:
r420254-5.8.8-2.0.49-prefork....ok
r420254-5.8.8-2.0.50-prefork....ok
r420254-5.8.8-2.0.51-prefork....ok
r420254-5.8.8-2.0.52-prefork....ok
r420254-5.8.8-2.0.53-prefork....ok
r420254-5.8.8-2.0.54-prefork....ok
r420254-5.8.8-2.0.55-prefork....ok
r420254-5.8.8-2.0.58-prefork....ok
r420254-5.8.8-2.2.0-prefork....ok
r420254-5.8.8-2.2.2-prefork....ok

r420254-5.8.8_ithread-2.0.51-worker....ok
r420254-5.8.8_ithread-2.0.52-worker....ok
r420254-5.8.8_ithread-2.0.53-worker....ok
r420254-5.8.8_ithread-2.0.54-worker....ok
r420254-5.8.8_ithread-2.0.55-worker....ok
r420254-5.8.8_ithread-2.0.58-worker....ok
r420254-5.8.8_ithread-2.2.0-worker....ok
r420254-5.8.8_ithread-2.2.2-worker....ok

r420254-5.8.8_ithread-2.2.0-event....ok
r420254-5.8.8_ithread-2.2.2-event....ok

Pointy Hat: gozer 


Modified:
    perl/modperl/trunk/t/modperl/local_env.t

Modified: perl/modperl/trunk/t/modperl/local_env.t
URL: http://svn.apache.org/viewvc/perl/modperl/trunk/t/modperl/local_env.t?rev=420268&r1=420267&r2=420268&view=diff
==============================================================================
--- perl/modperl/trunk/t/modperl/local_env.t (original)
+++ perl/modperl/trunk/t/modperl/local_env.t Sun Jul  9 02:13:08 2006
@@ -4,7 +4,7 @@
 use Apache::Test;
 use Apache::TestRequest qw(GET);
 
-plan tests => 1, skip_reason('local %ENV is still broken');
+plan tests => 1;
 
 my $module = 'TestModperl::local_env';
 my $url = Apache::TestRequest::module2url($module);



Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
Blast....  I'll dive into it tonight/tomorrow night.  If I can't fix it, I'll comment the test back out and take it back
out of the Changes file..

I wonder why it worked for me before....

Philippe M. Chiasson wrote:
> Same configuration, and I get this out of a simple make test
> 
> Failed Test            Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/modperl/setupenv2.t                23    7  30.43%  1-7
> t/modules/cgi.t                       5    5 100.00%  1-5
> t/modules/cgi2.t                      5    5 100.00%  1-5
> t/modules/cgipost.t                   6    3  50.00%  4-6
> t/modules/cgipost2.t                  6    3  50.00%  4-6
> t/modules/cgiupload.t                 2    2 100.00%  1-2
> t/modules/cgiupload2.t                2    2 100.00%  1-2
> 2 tests skipped.
> Failed 7/241 test scripts, 97.10% okay. 27/2643 subtests failed, 98.98% okay.
> 
> Philip M. Gollucci wrote:
>> Grr....
>>
>> Philippe M. Chiasson wrote:
>>> pgollucci@apache.org wrote:
>>>> Author: pgollucci
>>>> Date: Sun Jul  9 02:13:08 2006
>>>> New Revision: 420268
>>>>
>>> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
>>>
>>> Server version: Apache/2.2.2
>>> Server built:   May 11 2006 09:49:26
>>> Server's Module Magic Number: 20051115:2
>>> Server loaded:  APR 1.2.2, APR-Util 1.2.7
>>> Compiled using: APR 1.2.2, APR-Util 1.2.2
>>> Architecture:   32-bit
>>> Server MPM:     Prefork
>>>   threaded:     no
>>>     forked:     yes (variable process count)
>>>
>>> --------------------------------------------------------------------------------
>>> 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
>>>
>>
> 
> 


-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"It takes a minute to have a crush on someone, an hour to like someone,
and a day to love someone, but it takes a lifetime to forget someone..."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: modperl_env.c [was tie $r STDOUT]

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
So I've noticed some other "issues" that I can cause
by
{
  local %ENV {FOO => 1}
}
(see t/response/TestModperl/env.pm)

which ends up in modperl_env.c:
static void modperl_env_table_unpopulate(pTHX_ apr_table_t *table)
{
    HV *hv = ENVHV;
    U32 mg_flags;
    int i;
    const apr_array_header_t *array;
    apr_table_entry_t *elts;
sv_dump((SV*)hv);

    modperl_env_untie(mg_flags);
sv_dump((SV*)hv);

by adding the 2 sv_dumps above, I would expect the second one to tell
me that hv (ENVHV) is no longer tied via 'E', but it _is_.  I'm probably missing
something, but I've no idea what ?

Also, when the time comes to call
modperl_env_hv_delete() a few lines farther down

Finally,
void modperl_env_hv_delete(pTHX_ HV *hv, char *key)
{
    I32 klen = strlen(key);

    if (hv_exists(hv, key, klen)) {
        hv_delete(hv, key, strlen(key), G_DISCARD);
    }
}

This if is _NEVER_ true for the key 'FOO'

So I tried commenting out the if() just to see what what happen an nothing happened.
The hash key element never has un_magic(sv, 'e') to undo modperl_envelem_tie()...
I tried un_magic'ing the 'key' itself before trying to delete it from the hash 'hv'
and that didn't accomplish anything either.

*sigh*








-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"In all that I've done wrong I know I must have done something right to
deserve a hug every morning and butterfly kisses at night."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: tie STDOUT to $r [was : svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t]

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
Philip M. Gollucci wrote:
> This function is causing it.... now we get to go dig at the C implementations code
> (as I'm probably just now checking up to where Gozer was months ago.........)
AFAIK,  MP_PERL_HV_GMAGICAL_AWARE is never defined, and #ifdefing out a lot of code
looks like dougm was the original implementor of this slice of code.....

I believe its a requirement for the version of perl to allow magic to be able to be associated
to HVs for our implimentation of ENV in modperl_env.c (at least as far as tie'ing goes)

btw, #defining it breaks a 'lot' of the tests:
-------------------------------------------------------------------------------
t/apache/cgihandler.t                     2    1  50.00%  2
t/api/internal_redirect.t   255 65280     4    8 200.00%  1-4
t/modperl/cookie.t          255 65280     3    6 200.00%  1-3
t/modperl/env.t                          58   57  98.28%  1-4 6-58
t/modperl/local_env.t       255 65280    ??   ??       %  ??
t/modperl/merge.t                        10    4  40.00%  2-3 6 9
t/modperl/merge2.t                       10    4  40.00%  2-3 6 9
t/modperl/merge3.t                       10    4  40.00%  2-3 6 9
t/modperl/post_utf8.t       255 65280    ??   ??       %  ??
t/modperl/setupenv.t                     63   20  31.75%  36-42 48-58 62-63
t/modules/cgi.t                           5    5 100.00%  1-5
t/modules/cgipost.t         255 65280     6   12 200.00%  1-6
t/modules/cgiupload.t         0    13     2    4 200.00%  1-2
t/modules/include.t                       6    5  83.33%  1 3-6
t/modules/include_subreq.t  255 65280     1    2 200.00%  1

interestingly, local_env.pm among others segfault and setupevn.pm bombs (the actual tie'ing)
and setupenv2.pm passes.

BOO hiss...

dinner time.


-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"In all that I've done wrong I know I must have done something right to
deserve a hug every morning and butterfly kisses at night."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: tie STDOUT to $r [was : svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t]

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
This function is causing it.... now we get to go dig at the C implementations code
(as I'm probably just now checking up to where Gozer was months ago.........)

sub init_test_pm {
    my $r = shift;

    # needed to load Apache2::RequestRec::TIEHANDLE
    eval {require Apache2::RequestIO};
    if (defined &Apache2::RequestRec::TIEHANDLE) {
        untie *STDOUT;
        tie *STDOUT, $r;
        require Apache2::RequestRec; # $r->pool
        require APR::Pool;
        $r->pool->cleanup_register(sub { untie *STDOUT });
    }
    else {
        $r->send_http_header; #1.xx
    }

    $r->content_type('text/plain');
}



-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"In all that I've done wrong I know I must have done something right to
deserve a hug every morning and butterfly kisses at night."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
Philip M. Gollucci wrote:
> [dropped CC to -cvs list]
> 
> Philippe M. Chiasson wrote:
>> Same configuration, and I get this out of a simple make test
>> t/modperl/setupenv2.t                23    7  30.43%  1-7
>> t/modules/cgi.t                       5    5 100.00%  1-5
>> t/modules/cgi2.t                      5    5 100.00%  1-5
>> t/modules/cgipost.t                   6    3  50.00%  4-6
>> t/modules/cgipost2.t                  6    3  50.00%  4-6
>> t/modules/cgiupload.t                 2    2 100.00%  1-2
>> t/modules/cgiupload2.t                2    2 100.00%  1-2
>> 2 tests skipped.
> 
> with the 7 tests for t/modperl/local_env.t I just added, I can only get
> t/modperl/setupenv2.t to fail sometimes:
> 
> This one bombs on setupenv2.t
> ./t/TEST t/modperl/local_env.t t/modperl/setupenv.t t/modperl/setupenv2.t
> 
> These all work:
> ./t/TEST t/modperl/local_env.t t/modperl/setupenv2.t t/modperl/setupenv.t
> ./t/TEST t/modperl/local_env.t t/modperl/setupenv2.t
> ./t/TEST t/modperl/setupenv2.t
> ./t/TEST t/modperl/setupenv2.t t/modperl/setupenv.t
> ./t/TEST t/modperl/setupenv.t t/modperl/setupenv2.t

$> svn up
$> make test
[...]
Failed Test           Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/modperl/setupenv2.t               23    7  30.43%  1-7
t/modules/cgi.t                      5    1  20.00%  3
t/modules/cgi2.t                     5    2  40.00%  1 4
t/modules/cgipost.t                  6    1  16.67%  5
t/modules/cgipost2.t                 6    1  16.67%  5
t/modules/cgiupload.t                2    1  50.00%  2
2 tests skipped.
Failed 6/241 test scripts, 97.51% okay. 13/2647 subtests failed, 99.51% okay.

Same configuration et all.

--------------------------------------------------------------------------------
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: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
[dropped CC to -cvs list]

Philippe M. Chiasson wrote:
> Same configuration, and I get this out of a simple make test
> t/modperl/setupenv2.t                23    7  30.43%  1-7
> t/modules/cgi.t                       5    5 100.00%  1-5
> t/modules/cgi2.t                      5    5 100.00%  1-5
> t/modules/cgipost.t                   6    3  50.00%  4-6
> t/modules/cgipost2.t                  6    3  50.00%  4-6
> t/modules/cgiupload.t                 2    2 100.00%  1-2
> t/modules/cgiupload2.t                2    2 100.00%  1-2
> 2 tests skipped.

with the 7 tests for t/modperl/local_env.t I just added, I can only get
t/modperl/setupenv2.t to fail sometimes:

This one bombs on setupenv2.t
./t/TEST t/modperl/local_env.t t/modperl/setupenv.t t/modperl/setupenv2.t

These all work:
./t/TEST t/modperl/local_env.t t/modperl/setupenv2.t t/modperl/setupenv.t
./t/TEST t/modperl/local_env.t t/modperl/setupenv2.t
./t/TEST t/modperl/setupenv2.t
./t/TEST t/modperl/setupenv2.t t/modperl/setupenv.t
./t/TEST t/modperl/setupenv.t t/modperl/setupenv2.t





------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"In all that I've done wrong I know I must have done something right to
deserve a hug every morning and butterfly kisses at night."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
Blast....  I'll dive into it tonight/tomorrow night.  If I can't fix it, I'll comment the test back out and take it back
out of the Changes file..

I wonder why it worked for me before....

Philippe M. Chiasson wrote:
> Same configuration, and I get this out of a simple make test
> 
> Failed Test            Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/modperl/setupenv2.t                23    7  30.43%  1-7
> t/modules/cgi.t                       5    5 100.00%  1-5
> t/modules/cgi2.t                      5    5 100.00%  1-5
> t/modules/cgipost.t                   6    3  50.00%  4-6
> t/modules/cgipost2.t                  6    3  50.00%  4-6
> t/modules/cgiupload.t                 2    2 100.00%  1-2
> t/modules/cgiupload2.t                2    2 100.00%  1-2
> 2 tests skipped.
> Failed 7/241 test scripts, 97.10% okay. 27/2643 subtests failed, 98.98% okay.
> 
> Philip M. Gollucci wrote:
>> Grr....
>>
>> Philippe M. Chiasson wrote:
>>> pgollucci@apache.org wrote:
>>>> Author: pgollucci
>>>> Date: Sun Jul  9 02:13:08 2006
>>>> New Revision: 420268
>>>>
>>> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
>>>
>>> Server version: Apache/2.2.2
>>> Server built:   May 11 2006 09:49:26
>>> Server's Module Magic Number: 20051115:2
>>> Server loaded:  APR 1.2.2, APR-Util 1.2.7
>>> Compiled using: APR 1.2.2, APR-Util 1.2.2
>>> Architecture:   32-bit
>>> Server MPM:     Prefork
>>>   threaded:     no
>>>     forked:     yes (variable process count)
>>>
>>> --------------------------------------------------------------------------------
>>> 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
>>>
>>
> 
> 


-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"It takes a minute to have a crush on someone, an hour to like someone,
and a day to love someone, but it takes a lifetime to forget someone..."

Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
Same configuration, and I get this out of a simple make test

Failed Test            Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/modperl/setupenv2.t                23    7  30.43%  1-7
t/modules/cgi.t                       5    5 100.00%  1-5
t/modules/cgi2.t                      5    5 100.00%  1-5
t/modules/cgipost.t                   6    3  50.00%  4-6
t/modules/cgipost2.t                  6    3  50.00%  4-6
t/modules/cgiupload.t                 2    2 100.00%  1-2
t/modules/cgiupload2.t                2    2 100.00%  1-2
2 tests skipped.
Failed 7/241 test scripts, 97.10% okay. 27/2643 subtests failed, 98.98% okay.

Philip M. Gollucci wrote:
> Grr....
> 
> Philippe M. Chiasson wrote:
>> pgollucci@apache.org wrote:
>>> Author: pgollucci
>>> Date: Sun Jul  9 02:13:08 2006
>>> New Revision: 420268
>>>
>>
>> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
>>
>> Server version: Apache/2.2.2
>> Server built:   May 11 2006 09:49:26
>> Server's Module Magic Number: 20051115:2
>> Server loaded:  APR 1.2.2, APR-Util 1.2.7
>> Compiled using: APR 1.2.2, APR-Util 1.2.2
>> Architecture:   32-bit
>> Server MPM:     Prefork
>>   threaded:     no
>>     forked:     yes (variable process count)
>>
>> --------------------------------------------------------------------------------
>> 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
>>
> 
> 


-- 
--------------------------------------------------------------------------------
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: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
Same configuration, and I get this out of a simple make test

Failed Test            Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/modperl/setupenv2.t                23    7  30.43%  1-7
t/modules/cgi.t                       5    5 100.00%  1-5
t/modules/cgi2.t                      5    5 100.00%  1-5
t/modules/cgipost.t                   6    3  50.00%  4-6
t/modules/cgipost2.t                  6    3  50.00%  4-6
t/modules/cgiupload.t                 2    2 100.00%  1-2
t/modules/cgiupload2.t                2    2 100.00%  1-2
2 tests skipped.
Failed 7/241 test scripts, 97.10% okay. 27/2643 subtests failed, 98.98% okay.

Philip M. Gollucci wrote:
> Grr....
> 
> Philippe M. Chiasson wrote:
>> pgollucci@apache.org wrote:
>>> Author: pgollucci
>>> Date: Sun Jul  9 02:13:08 2006
>>> New Revision: 420268
>>>
>>
>> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
>>
>> Server version: Apache/2.2.2
>> Server built:   May 11 2006 09:49:26
>> Server's Module Magic Number: 20051115:2
>> Server loaded:  APR 1.2.2, APR-Util 1.2.7
>> Compiled using: APR 1.2.2, APR-Util 1.2.2
>> Architecture:   32-bit
>> Server MPM:     Prefork
>>   threaded:     no
>>     forked:     yes (variable process count)
>>
>> --------------------------------------------------------------------------------
>> 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
>>
> 
> 


-- 
--------------------------------------------------------------------------------
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: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
Grr....

Philippe M. Chiasson wrote:
> pgollucci@apache.org wrote:
>> Author: pgollucci
>> Date: Sun Jul  9 02:13:08 2006
>> New Revision: 420268
>>
>> URL: http://svn.apache.org/viewvc?rev=420268&view=rev
>> Log:
>> I haven't the foggiest what makes this work now since
>> we were specifically skipping it for some reason, but it works now.
> 
> I got a smoke run report this failure once more.
> 
> $> t/TEST t/modperl/local_env.t t/modules/cgi2.t
> t/modperl/local_env....ok
> t/modules/cgi2.........# Failed test 1 in t/modules/cgi2.t at line 29
> t/modules/cgi2.........NOK 2# Failed test 2 in t/modules/cgi2.t at line 35
> # Failed test 3 in t/modules/cgi2.t at line 43
> # Failed test 4 in t/modules/cgi2.t at line 52
> t/modules/cgi2.........NOK 4# Failed test 5 in t/modules/cgi2.t at line 60
> t/modules/cgi2.........FAILED tests 1-5
>         Failed 5/5 tests, 0.00% okay
> Failed Test      Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/modules/cgi2.t                5    5 100.00%  1-5
> Failed 1/2 test scripts, 50.00% okay. 5/6 subtests failed, 16.67% okay.
> [warning] server localhost.localdomain:8529 shutdown
> [  error] error running tests (please examine t/logs/error_log)
> 
> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
> 
> Server version: Apache/2.2.2
> Server built:   May 11 2006 09:49:26
> Server's Module Magic Number: 20051115:2
> Server loaded:  APR 1.2.2, APR-Util 1.2.7
> Compiled using: APR 1.2.2, APR-Util 1.2.2
> Architecture:   32-bit
> Server MPM:     Prefork
>   threaded:     no
>     forked:     yes (variable process count)
> 
> --------------------------------------------------------------------------------
> 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
> 


-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"It takes a minute to have a crush on someone, an hour to like someone,
and a day to love someone, but it takes a lifetime to forget someone..."

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philip M. Gollucci" <pg...@p6m7g8.com>.
Grr....

Philippe M. Chiasson wrote:
> pgollucci@apache.org wrote:
>> Author: pgollucci
>> Date: Sun Jul  9 02:13:08 2006
>> New Revision: 420268
>>
>> URL: http://svn.apache.org/viewvc?rev=420268&view=rev
>> Log:
>> I haven't the foggiest what makes this work now since
>> we were specifically skipping it for some reason, but it works now.
> 
> I got a smoke run report this failure once more.
> 
> $> t/TEST t/modperl/local_env.t t/modules/cgi2.t
> t/modperl/local_env....ok
> t/modules/cgi2.........# Failed test 1 in t/modules/cgi2.t at line 29
> t/modules/cgi2.........NOK 2# Failed test 2 in t/modules/cgi2.t at line 35
> # Failed test 3 in t/modules/cgi2.t at line 43
> # Failed test 4 in t/modules/cgi2.t at line 52
> t/modules/cgi2.........NOK 4# Failed test 5 in t/modules/cgi2.t at line 60
> t/modules/cgi2.........FAILED tests 1-5
>         Failed 5/5 tests, 0.00% okay
> Failed Test      Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/modules/cgi2.t                5    5 100.00%  1-5
> Failed 1/2 test scripts, 50.00% okay. 5/6 subtests failed, 16.67% okay.
> [warning] server localhost.localdomain:8529 shutdown
> [  error] error running tests (please examine t/logs/error_log)
> 
> This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2
> 
> Server version: Apache/2.2.2
> Server built:   May 11 2006 09:49:26
> Server's Module Magic Number: 20051115:2
> Server loaded:  APR 1.2.2, APR-Util 1.2.7
> Compiled using: APR 1.2.2, APR-Util 1.2.2
> Architecture:   32-bit
> Server MPM:     Prefork
>   threaded:     no
>     forked:     yes (variable process count)
> 
> --------------------------------------------------------------------------------
> 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
> 


-- 
------------------------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708
Consultant / http://p6m7g8.net/Resume/resume.shtml
Senior Software Engineer - TicketMaster - http://ticketmaster.com
1024D/A79997FA F357 0FDD 2301 6296 690F  6A47 D55A 7172 A799 97F

"It takes a minute to have a crush on someone, an hour to like someone,
and a day to love someone, but it takes a lifetime to forget someone..."

Re: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
pgollucci@apache.org wrote:
> Author: pgollucci
> Date: Sun Jul  9 02:13:08 2006
> New Revision: 420268
> 
> URL: http://svn.apache.org/viewvc?rev=420268&view=rev
> Log:
> I haven't the foggiest what makes this work now since
> we were specifically skipping it for some reason, but it works now.

I got a smoke run report this failure once more.

$> t/TEST t/modperl/local_env.t t/modules/cgi2.t
t/modperl/local_env....ok
t/modules/cgi2.........# Failed test 1 in t/modules/cgi2.t at line 29
t/modules/cgi2.........NOK 2# Failed test 2 in t/modules/cgi2.t at line 35
# Failed test 3 in t/modules/cgi2.t at line 43
# Failed test 4 in t/modules/cgi2.t at line 52
t/modules/cgi2.........NOK 4# Failed test 5 in t/modules/cgi2.t at line 60
t/modules/cgi2.........FAILED tests 1-5
        Failed 5/5 tests, 0.00% okay
Failed Test      Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/modules/cgi2.t                5    5 100.00%  1-5
Failed 1/2 test scripts, 50.00% okay. 5/6 subtests failed, 16.67% okay.
[warning] server localhost.localdomain:8529 shutdown
[  error] error running tests (please examine t/logs/error_log)

This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2

Server version: Apache/2.2.2
Server built:   May 11 2006 09:49:26
Server's Module Magic Number: 20051115:2
Server loaded:  APR 1.2.2, APR-Util 1.2.7
Compiled using: APR 1.2.2, APR-Util 1.2.2
Architecture:   32-bit
Server MPM:     Prefork
  threaded:     no
    forked:     yes (variable process count)

--------------------------------------------------------------------------------
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: svn commit: r420268 - /perl/modperl/trunk/t/modperl/local_env.t

Posted by "Philippe M. Chiasson" <go...@ectoplasm.org>.
pgollucci@apache.org wrote:
> Author: pgollucci
> Date: Sun Jul  9 02:13:08 2006
> New Revision: 420268
> 
> URL: http://svn.apache.org/viewvc?rev=420268&view=rev
> Log:
> I haven't the foggiest what makes this work now since
> we were specifically skipping it for some reason, but it works now.

I got a smoke run report this failure once more.

$> t/TEST t/modperl/local_env.t t/modules/cgi2.t
t/modperl/local_env....ok
t/modules/cgi2.........# Failed test 1 in t/modules/cgi2.t at line 29
t/modules/cgi2.........NOK 2# Failed test 2 in t/modules/cgi2.t at line 35
# Failed test 3 in t/modules/cgi2.t at line 43
# Failed test 4 in t/modules/cgi2.t at line 52
t/modules/cgi2.........NOK 4# Failed test 5 in t/modules/cgi2.t at line 60
t/modules/cgi2.........FAILED tests 1-5
        Failed 5/5 tests, 0.00% okay
Failed Test      Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/modules/cgi2.t                5    5 100.00%  1-5
Failed 1/2 test scripts, 50.00% okay. 5/6 subtests failed, 16.67% okay.
[warning] server localhost.localdomain:8529 shutdown
[  error] error running tests (please examine t/logs/error_log)

This is with trunk, FC5 perl-5.8.8 and FC5 httpd/prefork/2.2.2

Server version: Apache/2.2.2
Server built:   May 11 2006 09:49:26
Server's Module Magic Number: 20051115:2
Server loaded:  APR 1.2.2, APR-Util 1.2.7
Compiled using: APR 1.2.2, APR-Util 1.2.2
Architecture:   32-bit
Server MPM:     Prefork
  threaded:     no
    forked:     yes (variable process count)

--------------------------------------------------------------------------------
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