Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:96870 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 58216 invoked from network); 13 Nov 2016 01:48:26 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Nov 2016 01:48:26 -0000 Authentication-Results: pb1.pair.com header.from=dclarke@blastwave.org; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=dclarke@blastwave.org; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain blastwave.org from 209.17.115.114 cause and error) X-PHP-List-Original-Sender: dclarke@blastwave.org X-Host-Fingerprint: 209.17.115.114 atl4mhob20.registeredsite.com Received: from [209.17.115.114] ([209.17.115.114:51880] helo=atl4mhob20.registeredsite.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 65/83-31581-966C7285 for ; Sat, 12 Nov 2016 20:48:25 -0500 Received: from mailpod.hostingplatform.com ([10.30.77.35]) by atl4mhob20.registeredsite.com (8.14.4/8.14.4) with ESMTP id uAD1mL17014089 for ; Sat, 12 Nov 2016 20:48:21 -0500 Received: (qmail 24173 invoked by uid 0); 13 Nov 2016 01:48:21 -0000 X-TCPREMOTEIP: 99.253.103.29 X-Authenticated-UID: dclarke@blastwave.org Received: from unknown (HELO ?172.16.35.41?) (dclarke@blastwave.org@99.253.103.29) by 0 with ESMTPA; 13 Nov 2016 01:48:21 -0000 To: internals Message-ID: Date: Sat, 12 Nov 2016 20:48:20 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: PHP 5.6.27 and 5.6.28 both fail tests with Fatal error in the same place From: dclarke@blastwave.org (Dennis Clarke) This is a tad tricky but here is what happened. With a build of 5.6.27 I had no problems until the time came to run "make test" wherein everything seems normal until this : FAIL Basic bitwise stream crypto context flag assignment [ext/openssl/tests/stream_crypto_flags_001.phpt] FAIL TLSv1.1 and TLSv1.2 bitwise stream crypto flag assignment [ext/openssl/tests/stream_crypto_flags_002.phpt] FAIL Server bitwise stream crypto flag assignment [ext/openssl/tests/stream_crypto_flags_003.phpt] FAIL Specific protocol method specification [ext/openssl/tests/stream_crypto_flags_004.phpt] PHP Fatal error: Out of memory (allocated 1631059968) (tried to allocate 1623719982 bytes) in /usr/local/build/php-5.6.27_SunOS5.10_sparcv9.001/run-tests.php on line 1120 gmake: *** [test] Error 255 I was going to look into how to debug this but 5.6.28 released. Therefore I perform a normal configure and build as per usual and again "make test" fails fatal in the same place but with a different message : FAIL Basic bitwise stream crypto context flag assignment [ext/openssl/tests/stream_crypto_flags_001.phpt] FAIL TLSv1.1 and TLSv1.2 bitwise stream crypto flag assignment [ext/openssl/tests/stream_crypto_flags_002.phpt] FAIL Server bitwise stream crypto flag assignment [ext/openssl/tests/stream_crypto_flags_003.phpt] FAIL Specific protocol method specification [ext/openssl/tests/stream_crypto_flags_004.phpt] PHP Fatal error: String size overflow in /usr/local/build/php-5.6.28_SunOS5.10_sparcv9.001/run-tests.php on line 1120 gmake: *** [test] Error 255 So the question is, how do I run whatever specific test is creating this problem in a verbose manner to get more information? Please bear in mind that 5.6.26 builds and tests just fine : $ /usr/local/bin/php --version PHP 5.6.26 (cli) (built: Sep 21 2016 14:04:51) Copyright (c) 1997-2016 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies Dennis