Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43216 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 28943 invoked from network); 1 Mar 2009 03:34:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Mar 2009 03:34:13 -0000 Authentication-Results: pb1.pair.com header.from=greg@chiaraquartet.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=greg@chiaraquartet.net; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain chiaraquartet.net from 209.85.198.231 cause and error) X-PHP-List-Original-Sender: greg@chiaraquartet.net X-Host-Fingerprint: 209.85.198.231 rv-out-0506.google.com Received: from [209.85.198.231] ([209.85.198.231:18998] helo=rv-out-0506.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 30/1C-48743-3320AA94 for ; Sat, 28 Feb 2009 22:34:13 -0500 Received: by rv-out-0506.google.com with SMTP id b25so1635674rvf.23 for ; Sat, 28 Feb 2009 19:34:09 -0800 (PST) Received: by 10.142.254.2 with SMTP id b2mr2190098wfi.287.1235878449449; Sat, 28 Feb 2009 19:34:09 -0800 (PST) Received: from monster.local ([76.84.30.125]) by mx.google.com with ESMTPS id 30sm10446591wfd.35.2009.02.28.19.34.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 28 Feb 2009 19:34:08 -0800 (PST) Message-ID: <49AA022B.1040701@chiaraquartet.net> Date: Sat, 28 Feb 2009 21:34:03 -0600 User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070807) MIME-Version: 1.0 To: Kalle Sommer Nielsen CC: PHP Developers Mailing List References: <499F76C6.4010601@chiaraquartet.net> <2dedb8a0902210755g1b6268f8p34058d23203e0631@mail.gmail.com> In-Reply-To: <2dedb8a0902210755g1b6268f8p34058d23203e0631@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] phar update From: greg@chiaraquartet.net (Greg Beaver) hi Kalle, Thank you very much for your work on this, it is much appreciated. Sorry for the delay in replying, I have been out of town for a while. Kalle Sommer Nielsen wrote: > Hi Greg > > 2009/2/21 Greg Beaver : >> Hi, >> >> [snip] > > Good work! > >> I do need some help verifying phar as working with the following >> configurations: >> >> any endian any unix with intel CC >> any Windows Vista >> 64-bit Windows XP >> any other supported OS/compiler/processor combo I didn't list. > > I tested phar under 5.3-cvs and HEAD with Windows Vista 32bit little > endian and VC9. > > Theres only one compilation warning which only exists in HEAD: > ext\phar\func_interceptors.c(101) : warning C4101: 'newlen' : > unreferenced local variable > > However tests wise then the following tests fails in 5.3-cvs: > Phar front controller with mounted external file > [C:\php\src\ext\phar\tests\front.phar.phpt] It appears that this test is not line-ending agnostic, and I'm about to commit a fix, as the problem is simply the length of the string is 172 instead of 167 due to extra \r. This is very good news :) > Phar::getSupportedSignatures() > [C:\php\src\ext\phar\tests\phar_get_supported_signatures_002.phpt] This one is perplexing - I wonder if you have built ext/hash statically or as a .dll? The phar ext is not detected ext/hash, but the test is not skipping because ext/hash is present in the SKIPIF > Phar::setStub() (zip-based) [C:\php\src\ext\phar\tests\zip\phar_stub.phpt] This one is actually troubling, as it looks like a crash is terminating the test at the second setStub() I will try to investigate, but if others can confirm this failure on their windows, that would be helpful. Thanks, Greg