Re: [PHP-DEV] [RFC] [Discuss] Random Functions Throwing Exceptions in PHP 7.0.0

2015-08-24 Thread Pierre Joye
On Aug 24, 2015 9:38 AM, "Scott Arciszewski" wrote: > > > There is no /dev/urandom on the Windows operating system, so that > system is not universal. For tge record, all version of crypto safe RNG (at least mcrypt and openssl) use the windows crypto API since some time already. I did not check

[PHP-DEV] Benchmark Results for PHP Master 2015-08-24

2015-08-24 Thread lp_benchmark_robot
Results for project php-src-nightly, build date 2015-08-24 05:00:00+03:00 commit: b928ea2de72f73687a4f55251ce68c9a96c8574a revision_date:2015-08-23 22:56:51+02:00 environment: Haswell-EP cpu: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz 2x18 cores, stepping 2, LLC 45 MB

RE: [PHP-DEV] Re: Overflow checks and integral vars comparison

2015-08-24 Thread Anatol Belski
Hi Jakub, > -Original Message- > From: jakub@gmail.com [mailto:jakub@gmail.com] On Behalf Of Jakub > Zelenka > Sent: Sunday, August 23, 2015 8:29 PM > To: Anatol Belski > Cc: Dmitry Stogov ; Xinchen Hui ; > Nikita Popov ; Pierre Joye ; > Bob Weinand ; Matt Wilmas > ; PHP internals

Re: [PHP-DEV] Overflow checks and integral vars comparison

2015-08-24 Thread Sherif Ramadan
Hey Rowan, Yup, I get it now. Sorry for the confusion. I actually remember fixing a similar bug in pdo_sqlite a while back where casting/translation between the two sizes caused such an issue. So I think this would be pretty helpful. On Sun, Aug 23, 2015 at 6:28 PM, Rowan Collins wrote: > On 2

RE: [PHP-DEV] Overflow checks and integral vars comparison

2015-08-24 Thread Anatol Belski
Hi Sherif, > -Original Message- > From: Sherif Ramadan [mailto:theanomaly...@gmail.com] > Sent: Monday, August 24, 2015 4:06 PM > To: Rowan Collins > Cc: PHP Internals > Subject: Re: [PHP-DEV] Overflow checks and integral vars comparison > > Hey Rowan, > > Yup, I get it now. Sorry for

RE: [PHP-DEV] Overflow checks and integral vars comparison

2015-08-24 Thread Anatol Belski
Hi Rowan, > -Original Message- > From: Rowan Collins [mailto:rowan.coll...@gmail.com] > Sent: Monday, August 24, 2015 12:29 AM > To: internals@lists.php.net > Subject: Re: [PHP-DEV] Overflow checks and integral vars comparison > > On 22/08/2015 02:38, Sherif Ramadan wrote: > > I see. So y

[PHP-DEV] Q: Writing *.phpt's: How to specify multi-process test?

2015-08-24 Thread Eric Stenson
Good Morning PHP Internals! I'm trying to get some unit test coverage on some functionality that requires two separate processes, and I'm wondering how to do this with a *.phpt. WinCache has a cross-process lock functionality that allows synchronization between two processes. (See: http://php

Re: [PHP-DEV] Q: Writing *.phpt's: How to specify multi-process test?

2015-08-24 Thread Matt Ficken
Clarification: your test depends on being able to run multiple instances of the same test at the same time? run-tests runs one test at a time. It does launch a separate php.exe for each test, but it doesn't use non-blocking popen or pcntl, so it can only run one test at a time. see: http://git.ph