Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:26745 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 55451 invoked by uid 1010); 1 Dec 2006 02:25:56 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 55436 invoked from network); 1 Dec 2006 02:25:56 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Dec 2006 02:25:56 -0000 Authentication-Results: pb1.pair.com smtp.mail=shire@facebook.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=shire@facebook.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain facebook.com designates 204.15.20.10 as permitted sender) X-PHP-List-Original-Sender: shire@facebook.com X-Host-Fingerprint: 204.15.20.10 aggr1.fw.sctm.tfbnw.net Windows 2000 SP4, XP SP1 Received: from [204.15.20.10] ([204.15.20.10:60231] helo=kitt.TheFacebook.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DF/E9-20970-1929F654 for ; Thu, 30 Nov 2006 21:25:56 -0500 Received: from [192.168.1.100] ([66.92.189.79]) by kitt.TheFacebook.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.1830); Thu, 30 Nov 2006 18:25:18 -0800 Mime-Version: 1.0 (Apple Message framework v752.3) Content-Transfer-Encoding: 7bit Message-ID: <873756B2-DE0A-42F4-AC5A-04FFF0A42592@facebook.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: PHP internals Date: Thu, 30 Nov 2006 18:25:15 -0800 X-Mailer: Apple Mail (2.752.3) X-OriginalArrivalTime: 01 Dec 2006 02:25:18.0627 (UTC) FILETIME=[F196A730:01C714EF] Subject: make test flag? From: shire@facebook.com (Brian Shire) I noticed the make test command may need the "-n" flag added so that it will exclude already installed ini files. Specifically this causes a problem when running make test on a system that already has the same DSO installed so it tries to load it twice (once via the installed ini and again for the test). Perhaps there's other places where this causes problems? ... " -n No php.ini file will be used" diff --git a/Makefile.global b/Makefile.global index ec86927..237c1a6 100644 --- a/Makefile.global +++ b/Makefile.global @@ -74,7 +74,7 @@ test: all TEST_PHP_EXECUTABLE=$(PHP_EXECUTABLE) \ TEST_PHP_SRCDIR=$(top_srcdir) \ CC="$(CC)" \ - $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -d 'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$ $dlname)` tests/; \ + $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -n -d 'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$$dlname)` tests/; \ elif test ! -z "$(SAPI_CLI_PATH)" && test -x "$(SAPI_CLI_PATH)"; then \ TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \ TEST_PHP_SRCDIR=$(top_srcdir) \ -Brian Shire shire@facebook.com shire@php.net aim: int80h