[PHP-QA] com web/qa: 5.5 beta4: include/release-qa.php

2013-04-25 Thread JulienPauli
Commit:1c594859dede38af4ca109543209ac59b576673a
Author:Julien Pauli  Thu, 25 Apr 2013 10:40:01 +0200
Parents:   f5e70be2083e4aa454870746e56d68e34fe8c96e
Branches:  master

Link:   
http://git.php.net/?p=web/qa.git;a=commitdiff;h=1c594859dede38af4ca109543209ac59b576673a

Log:
5.5 beta4

Changed paths:
  M  include/release-qa.php


Diff:
diff --git a/include/release-qa.php b/include/release-qa.php
index 42258a7..2cec71d 100644
--- a/include/release-qa.php
+++ b/include/release-qa.php
@@ -90,11 +90,11 @@ $QA_RELEASES = array(
),
'release'   => array(
'type'  => 'beta',
-   'number'=> 3,
-   'md5_bz2'   => '68cef3d880a4ac7e84814d49e8a6509b',
-   'md5_gz'=> '8f5e467656b7fe5ca24da56cf6de7f01',
-   'md5_xz'=> '7cf9b81a8e9a28b9431f3741d8916a9c',
-   'date'  => '11 Apr 2013',
+   'number'=> 4,
+   'md5_bz2'   => 'fbd8b5d72b118af0e50733f3ac775310',
+   'md5_gz'=> '4d0367b067e7fab910beebe779f2b7a8',
+   'md5_xz'=> '2fcab8846b3626250f9f1319e632fe02',
+   'date'  => '25 Apr 2013',
'baseurl'   => 'http://downloads.php.net/dsp/',
),
),


--
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-QA] PHP 5.5 beta4

2013-04-25 Thread Julien Pauli
Hello people,

You are receiving this email because your project has been selected to
take part in an effort by the PHP QA Team to make sure that your project
still works with PHP versions to-be-released. With this we hope to make
sure that you are either aware of things that might break, or to make
sure we don't introduce any strange regressions.

The 4th beta for 5.5 was just released and can be
downloaded from:

http://qa.php.net/

The Windows binaries are available at

http://windows.php.net/qa/

PHP 5.5.0 beta 4 fixes some bugs against beta 3.

For a list of new features and bugfixes that you can target in your
testing, please refer to the NEWS file:


https://github.com/php/php-src/blob/php-5.5.0beta4/NEWS

The next step is entering RC, first RC should show up in May 9th.

In case you think that other projects should also receive this kind
of emails, please let us know privately, and we will add them to the
list of projects to contact.

Regards,
Julien Pauli and David Soria Parra


[PHP-QA] com web/qa: New 5.5b4 release to fix missing things: include/release-qa.php

2013-04-25 Thread JulienPauli
Commit:7757a68c48eb3a21b26733a6b3b9a7adeb726aaa
Author:Julien Pauli  Thu, 25 Apr 2013 14:00:27 +0200
Parents:   1c594859dede38af4ca109543209ac59b576673a
Branches:  master

Link:   
http://git.php.net/?p=web/qa.git;a=commitdiff;h=7757a68c48eb3a21b26733a6b3b9a7adeb726aaa

Log:
New 5.5b4 release to fix missing things

Changed paths:
  M  include/release-qa.php


Diff:
diff --git a/include/release-qa.php b/include/release-qa.php
index 2cec71d..625bd4e 100644
--- a/include/release-qa.php
+++ b/include/release-qa.php
@@ -91,9 +91,9 @@ $QA_RELEASES = array(
'release'   => array(
'type'  => 'beta',
'number'=> 4,
-   'md5_bz2'   => 'fbd8b5d72b118af0e50733f3ac775310',
-   'md5_gz'=> '4d0367b067e7fab910beebe779f2b7a8',
-   'md5_xz'=> '2fcab8846b3626250f9f1319e632fe02',
+   'md5_bz2'   => '96a1a53418daa96484828692ef085e7b',
+   'md5_gz'=> 'ea500ffd473977228333b4d8a9ee15de',
+   'md5_xz'=> 'cba102154280dd16462150232dad9487',
'date'  => '25 Apr 2013',
'baseurl'   => 'http://downloads.php.net/dsp/',
),


--
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-QA] [PHP-BUG] Bug #64714 [NEW]: ext/standard/tests/file/bug24482.phpt finds too many files if run too fast

2013-04-25 Thread mattfic...@php.net
From: mattficken
Operating system: Windows
PHP version:  Irrelevant
Package:  Testing related
Bug Type: Bug
Bug description:ext/standard/tests/file/bug24482.phpt finds too many files if 
run too fast

Description:

ext/standard/tests/file/bug24482.phpt, run fast enough with other tests, on
4+ cpu core machines may get a different count of the files in the
ext/standard/tests/file directory from glob() and opendir().

This is not a stat cache problem. Its just that other PHPT tests create
files in ext/standard/tests/file directory and, though they clean them up,
on very fast Windows servers, sometimes the deletion is committed to the
file system (by Windows) during the time between the glob() and opendir()
calls.

This isn't really a PHP problem, but rather an OS behavior/side-effect of
performance optimizations in the OS/file-system.

The simple solution is to change the directory the test checks to
ext/standard/tests. PHPT tests don't create test files there at all, so the
count of files/directories there won't change during a test run.

Test script:
---
See ext/standard/tests/file/bug24482.phpt

Expected result:

Pass

Actual result:
--
Fail (2 different counts)

-- 
Edit bug report at https://bugs.php.net/bug.php?id=64714&edit=1
-- 
Try a snapshot (PHP 5.4):   
https://bugs.php.net/fix.php?id=64714&r=trysnapshot54
Try a snapshot (PHP 5.3):   
https://bugs.php.net/fix.php?id=64714&r=trysnapshot53
Try a snapshot (trunk): 
https://bugs.php.net/fix.php?id=64714&r=trysnapshottrunk
Fixed in SVN:   https://bugs.php.net/fix.php?id=64714&r=fixed
Fixed in release:   https://bugs.php.net/fix.php?id=64714&r=alreadyfixed
Need backtrace: https://bugs.php.net/fix.php?id=64714&r=needtrace
Need Reproduce Script:  https://bugs.php.net/fix.php?id=64714&r=needscript
Try newer version:  https://bugs.php.net/fix.php?id=64714&r=oldversion
Not developer issue:https://bugs.php.net/fix.php?id=64714&r=support
Expected behavior:  https://bugs.php.net/fix.php?id=64714&r=notwrong
Not enough info:
https://bugs.php.net/fix.php?id=64714&r=notenoughinfo
Submitted twice:
https://bugs.php.net/fix.php?id=64714&r=submittedtwice
register_globals:   https://bugs.php.net/fix.php?id=64714&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=64714&r=php4
Daylight Savings:   https://bugs.php.net/fix.php?id=64714&r=dst
IIS Stability:  https://bugs.php.net/fix.php?id=64714&r=isapi
Install GNU Sed:https://bugs.php.net/fix.php?id=64714&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=64714&r=float
No Zend Extensions: https://bugs.php.net/fix.php?id=64714&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=64714&r=mysqlcfg


-- 
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-QA] Bug #64714 [PATCH]: ext/standard/tests/file/bug24482.phpt finds too many files if run too fast

2013-04-25 Thread mattfic...@php.net
Edit report at https://bugs.php.net/bug.php?id=64714&edit=1

 ID: 64714
 Patch added by: mattfic...@php.net
 Reported by:mattfic...@php.net
 Summary:ext/standard/tests/file/bug24482.phpt finds too many
 files if run too fast
 Status: Open
 Type:   Bug
 Package:Testing related
 Operating System:   Windows
 PHP Version:Irrelevant
 Block user comment: N
 Private report: N

 New Comment:

The following patch has been added/updated:

Patch Name: bug24482.patch.txt
Revision:   1366915651
URL:
https://bugs.php.net/patch-display.php?bug=64714&patch=bug24482.patch.txt&revision=1366915651


Previous Comments:

[2013-04-25 18:32:05] mattfic...@php.net

Description:

ext/standard/tests/file/bug24482.phpt, run fast enough with other tests, on 4+ 
cpu core machines may get a different count of the files in the 
ext/standard/tests/file directory from glob() and opendir().

This is not a stat cache problem. Its just that other PHPT tests create files 
in ext/standard/tests/file directory and, though they clean them up, on very 
fast Windows servers, sometimes the deletion is committed to the file system 
(by Windows) during the time between the glob() and opendir() calls.

This isn't really a PHP problem, but rather an OS behavior/side-effect of 
performance optimizations in the OS/file-system.

The simple solution is to change the directory the test checks to 
ext/standard/tests. PHPT tests don't create test files there at all, so the 
count of files/directories there won't change during a test run.

Test script:
---
See ext/standard/tests/file/bug24482.phpt

Expected result:

Pass

Actual result:
--
Fail (2 different counts)






-- 
Edit this bug report at https://bugs.php.net/bug.php?id=64714&edit=1

-- 
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-QA] Bug #64714 [Com]: ext/standard/tests/file/bug24482.phpt finds too many files if run too fast

2013-04-25 Thread mattfic...@php.net
Edit report at https://bugs.php.net/bug.php?id=64714&edit=1

 ID: 64714
 Comment by: mattfic...@php.net
 Reported by:mattfic...@php.net
 Summary:ext/standard/tests/file/bug24482.phpt finds too many
 files if run too fast
 Status: Open
 Type:   Bug
 Package:Testing related
 Operating System:   Windows
 PHP Version:Irrelevant
 Block user comment: N
 Private report: N

 New Comment:

Bug affects 5.3, 5.4, 5.5 on Windows.

Attached patch fixes it on Windows and doesn't break on Linux.


Previous Comments:

[2013-04-25 18:47:31] mattfic...@php.net

The following patch has been added/updated:

Patch Name: bug24482.patch.txt
Revision:   1366915651
URL:
https://bugs.php.net/patch-display.php?bug=64714&patch=bug24482.patch.txt&revision=1366915651


[2013-04-25 18:32:05] mattfic...@php.net

Description:

ext/standard/tests/file/bug24482.phpt, run fast enough with other tests, on 4+ 
cpu core machines may get a different count of the files in the 
ext/standard/tests/file directory from glob() and opendir().

This is not a stat cache problem. Its just that other PHPT tests create files 
in ext/standard/tests/file directory and, though they clean them up, on very 
fast Windows servers, sometimes the deletion is committed to the file system 
(by Windows) during the time between the glob() and opendir() calls.

This isn't really a PHP problem, but rather an OS behavior/side-effect of 
performance optimizations in the OS/file-system.

The simple solution is to change the directory the test checks to 
ext/standard/tests. PHPT tests don't create test files there at all, so the 
count of files/directories there won't change during a test run.

Test script:
---
See ext/standard/tests/file/bug24482.phpt

Expected result:

Pass

Actual result:
--
Fail (2 different counts)






-- 
Edit this bug report at https://bugs.php.net/bug.php?id=64714&edit=1

-- 
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-QA] com web/qa: PHP 5.3.25RC1 and 5.4.15RC1: include/release-qa.php

2013-04-25 Thread Johannes Schlüter
Commit:2a9b5bdbeb459c9c00cc0f24ce059131d404f88e
Author:Johannes Schlüter  Thu, 25 Apr 2013 
21:47:42 +0200
Parents:   7757a68c48eb3a21b26733a6b3b9a7adeb726aaa
Branches:  master

Link:   
http://git.php.net/?p=web/qa.git;a=commitdiff;h=2a9b5bdbeb459c9c00cc0f24ce059131d404f88e

Log:
PHP 5.3.25RC1 and 5.4.15RC1

Changed paths:
  M  include/release-qa.php


Diff:
diff --git a/include/release-qa.php b/include/release-qa.php
index 625bd4e..b59ea32 100644
--- a/include/release-qa.php
+++ b/include/release-qa.php
@@ -58,10 +58,10 @@ $QA_RELEASES = array(
),
'release'   => array(
'type'  => 'RC',
-   'number'=> 0,
-   'md5_bz2'   => '',
-   'md5_gz'=> '',
-   'date'  => '28 Mar 2013',
+   'number'=> 1,
+   'md5_bz2'   => '0827ae4dd8df3528b389791b9ece3da2',
+   'md5_gz'=> '37fe13da58c3336675d69358bd47a754',
+   'date'  => '25 Apr 2013',
'baseurl'   => 'http://downloads.php.net/johannes/',
),
),
@@ -74,10 +74,10 @@ $QA_RELEASES = array(
),
'release'   => array(
'type'  => 'RC',
-   'number'=> 0,
-   'md5_bz2'   => '',
-   'md5_gz'=> '',
-   'date'  => '28 Mar 2013',
+   'number'=> 1,
+   'md5_bz2'   => 'e38f1b307d528bc16347bb76fbf9b4e0',
+   'md5_gz'=> '42f3e7de1e695aba249050fbc9c92cb0',
+   'date'  => '25 Apr 2013',
'baseurl'   => 'http://downloads.php.net/stas/',
),
),


--
PHP Quality Assurance Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php