Geoff, looks like I'm a bit stuck with 5.8.1/mp2 issues. Can you please look at the following problem in the mp1 test suite which happens with 5.8.0 and higher (probably not a showstopper for 5.8.1, but still quite important).

The problem is caused by modules/symbol.t which calls t/net/perl/sym.pl, which does:

delete $Apache::Registry->{+__PACKAGE__};

this causes the failure of internal/http-get and internal/http-post tests. They fails because t/net/perl/test calls exit and it can't find Apache::exit because of the above delete call in t/net/perl/sym.pl

this workaround "solves" the problem:

     else {
-       exit;
-       die "shouldn't get this far!\n";
+        warn "running exit\n";
+       #exit;
+       #die "shouldn't get this far!\n";
     }

but it's not right, need to check why delete $Apache::Registry->{+__PACKAGE__}; causes this problem in first place.

it fails when I build with:

cd ../apache-1.3 && make clean ; cd ../modperl && make clean ; /home/stas/perl/5.8.1/bin/perl Makefile.PL APACHE_SRC=../apache-1.3/src DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 DYNAMIC=1 APACHE_PREFIX=/home/stas/httpd/1.3-dynamic APACI_ARGS="--prefix=/home/stas/httpd/1.3-dynamic --enable-shared=max --enable-module=most --with-layout=Apache --without-execstrip" PERL_TRACE=1 PERL_DEBUG=1 && make && make test

Thanks.

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


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to