Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 98163 invoked from network); 17 Dec 2004 00:10:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 17 Dec 2004 00:10:19 -0000 Received: (qmail 60237 invoked by uid 500); 17 Dec 2004 00:03:34 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 60178 invoked by uid 500); 17 Dec 2004 00:03:34 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 60154 invoked by uid 99); 17 Dec 2004 00:03:33 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 16 Dec 2004 16:01:49 -0800 Received: (qmail 93539 invoked by uid 65534); 17 Dec 2004 00:00:35 -0000 Date: 17 Dec 2004 00:00:35 -0000 Message-ID: <20041217000035.93537.qmail@minotaur.apache.org> From: stas@apache.org To: test-cvs@httpd.apache.org Subject: svn commit: r122599 - /httpd/test/trunk/perl-framework/Apache-Test/ToDo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: stas Date: Thu Dec 16 15:55:15 2004 New Revision: 122599 URL: http://svn.apache.org/viewcvs?view=rev&rev=122599 Log: on linux most symbols are resolved on demand, but this is not the case with certain other platforms. so testing on linux may not detect some problems, exposed on other platforms. env var PERL_DL_NONLAZY=1 tries to resolve all symbols at load time. Modified: httpd/test/trunk/perl-framework/Apache-Test/ToDo Modified: httpd/test/trunk/perl-framework/Apache-Test/ToDo Url: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/Apache-Test/ToDo?view=diff&rev=122599&p1=httpd/test/trunk/perl-framework/Apache-Test/ToDo&r1=122598&p2=httpd/test/trunk/perl-framework/Apache-Test/ToDo&r2=122599 ============================================================================== --- httpd/test/trunk/perl-framework/Apache-Test/ToDo (original) +++ httpd/test/trunk/perl-framework/Apache-Test/ToDo Thu Dec 16 15:55:15 2004 @@ -1,3 +1,19 @@ +- on linux most symbols are resolved on demand, but this is not the + case with certain other platforms. so testing on linux may not + detect some problems, exposed on other platforms. env var + PERL_DL_NONLAZY=1 tries to resolve all symbols at load time. we + could always enforce that with this patch: + +--- Apache-Test/lib/Apache/TestRun.pm 16 Apr 2004 20:29:23 -0000 1.166 ++++ Apache-Test/lib/Apache/TestRun.pm 6 May 2004 04:43:01 -0000 +@@ -643,7 +643,7 @@ + } + close $sh; + +- $original_command = "ulimit -c unlimited; $original_command"; ++ $original_command = "ulimit -c unlimited; PERL_DL_NONLAZY=1 $original_comma +nd"; + - general config: adjust Apache/TestConfig.pm not to write irrelevant httpd.conf sections (e.g. for win32, and vice versa, A-T knows exactly what mpm it needs to write the config for).