Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:80979 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 29442 invoked from network); 22 Jan 2015 17:36:45 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jan 2015 17:36:45 -0000 Authentication-Results: pb1.pair.com header.from=sebastian@php.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=sebastian@php.net; spf=unknown; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 93.190.64.238 as permitted sender) X-PHP-List-Original-Sender: sebastian@php.net X-Host-Fingerprint: 93.190.64.238 mail-2.de-punkt.de Received: from [93.190.64.238] ([93.190.64.238:58059] helo=mail-99.de-punkt.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 23/0B-61273-B2531C45 for ; Thu, 22 Jan 2015 12:36:45 -0500 Received: from localhost (localhost [127.0.0.1]) by mail-99.de-punkt.de (Postfix) with ESMTP id 0F7E53A275 for ; Thu, 22 Jan 2015 18:36:41 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail-2.de-punkt.de Received: from mail-99.de-punkt.de ([127.0.0.1]) by localhost (mail-2.de-punkt.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IgxNU-qsue1u for ; Thu, 22 Jan 2015 18:36:40 +0100 (CET) Received: from [192.168.178.24] (p4FC7DAD0.dip0.t-ipconnect.de [79.199.218.208]) (Authenticated sender: php@sebastian-bergmann.de) by mail-99.de-punkt.de (Postfix) with ESMTPSA id 8E6923A272 for ; Thu, 22 Jan 2015 18:36:40 +0100 (CET) Message-ID: <54C1352A.3030805@php.net> Date: Thu, 22 Jan 2015 18:36:42 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: internals@lists.php.net References: <54C12DD8.7020800@lerdorf.com> In-Reply-To: <54C12DD8.7020800@lerdorf.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] PHP7 Homework for everyone reading this list From: sebastian@php.net (Sebastian Bergmann) Am 22.01.2015 um 18:05 schrieb Rasmus Lerdorf: > It would be really useful if we got more eyes on this. Install php7, > then install any random app and see how it goes. It's even easier to check whether a component or framework has issues with PHP 7: simply run the respective test suite with PHP 7. With the exception of one test case, the test suite for PHPUnit itself runs without a problem on PHP 7. The one test that fails is related to the textual representation of SplObjectStorage objects: Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ - ) +- 'inf' => null +- ) +- '000000006a6ff9c8000000006911d926' => Array &1 ( +SplObjectStorage Object &000000006a6ff9ce000000006910251e ( + '000000006a6ff9c8000000006911d926' => Array &0 ( -+ 'obj' => stdClass Object &000000006a6ff9c8000000006911d926 () + 'obj' => stdClass Object &000000006a6ff9c8000000006911d926 () 'inf' => null ) -- '000000006a6ff9c8000000006911d926' => Array &0 ) ' Hopefully I'll have the time soon to investigate this. It would be great if Travis CI would offer PHP 7 nightly / weekly builds to test against. The we could ask the projects that run their tests on Travis CI to enable PHP 7 for their builds.