Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:44228 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 70889 invoked from network); 10 Jun 2009 20:38:58 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 Jun 2009 20:38:58 -0000 Authentication-Results: pb1.pair.com header.from=nlopess@php.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=nlopess@php.net; spf=unknown; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 212.55.154.22 as permitted sender) X-PHP-List-Original-Sender: nlopess@php.net X-Host-Fingerprint: 212.55.154.22 relay2.ptmail.sapo.pt Linux 2.4/2.6 Received: from [212.55.154.22] ([212.55.154.22:46835] helo=relay2.ptmail.sapo.pt) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id CD/12-58663-0E9103A4 for ; Wed, 10 Jun 2009 16:38:57 -0400 Received: (qmail 22559 invoked from network); 10 Jun 2009 20:38:53 -0000 Received: from unknown (HELO sapo.pt) (10.134.37.165) by relay2 with SMTP; 10 Jun 2009 20:38:53 -0000 Received: (qmail 20510 invoked from network); 10 Jun 2009 20:38:53 -0000 X-AntiVirus: PTMail-AV 0.3-0.92.0 X-Virus-Status: Clean (0.01500 seconds) Received: from unknown (HELO PC3EE1F19287) (nunoplopes@sapo.pt@[93.197.132.200]) (envelope-sender ) by mta15 (qmail-ldap-1.03) with SMTP for ; 10 Jun 2009 20:38:53 -0000 Message-ID: <40FA7DAAEDB842BDA8AB74CC7FF1164F@PC3EE1F19287> To: "Guilherme Blanco" Cc: "PHP Internals" References: <1244645012.6252.110.camel@goldfinger> Date: Wed, 10 Jun 2009 21:38:41 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="UTF-8"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5512 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 Subject: Re: [PHP-DEV] Last steps towards 5.3.0 From: nlopess@php.net ("Nuno Lopes") > PS: If someone wants to give a hand to find the regression... I can > explain how to reproduce. The easiest way is to use a tool to help reducing the test case automatically. I don't know about any specific tool for reducing PHP files, but in the past I've used delta (http://delta.tigris.org/), which is a reducer for C/C++ and it works quite well with PHP. You have to do two things in order it to work: disable topformflat (because it doesn't understand PHP), and inline the included files after the first reduction step, and keep inlining the include()'s that survive to a reduce step. Nevertheless, it's a fairly trivial process. Nuno