apr/table......................FAILED tests 20-21 Failed 2/21 tests, 90.48% okay
FWIW, I was able to build without error on a different machine (same architecture and OS - redhat 8.0 on intel) - the machine where it fails is a dual-processor, but I cannot see what difference that would make.
Matisse Enzer wrote:Anyone have some suggestions for me?
-------------8<---------- Start Bug Report ------------8<---------- 1. Problem Description:
apr/table......................FAILED tests 20-21
Please apply the patch at the bottom and send the ouput of:
t/TEST -v apr/table
I think this has to do with 'if (HAVE_APACHE_2_0_47) {'. May be the new api compress didn't end up in 2.0.47. Care to try to install 2.0.48 and give it another test?
--- t/response/TestAPR/table.pm 22 Aug 2003 19:15:08 -0000 1.8 +++ t/response/TestAPR/table.pm 7 Nov 2003 20:20:40 -0000 @@ -4,6 +4,7 @@ use warnings FATAL => 'all';
use Apache::Test; +use Apache::TestUtil;
use APR::Table ();
@@ -127,8 +128,12 @@ $overlay->compress(APR::OVERLAP_TABLES_MERGE);
# $add first, then $base - ok $overlay->get('foo') eq 'three, one, two'; - ok $overlay->get('bar') eq 'beer'; + ok t_cmp($overlay->get('foo'), + 'three, one, two', + "$overlay->compress"); + ok t_cmp($overlay->get('bar'), + 'beer', + "\$overlay->compress"); }
Apache::OK;
__________________________________________________________________ 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
-- ------------------------------------------ Matisse Enzer Doodlelab Inc. 415-925-5294 ext. 212 (office) 415-225-6703 (mobile)
-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html