summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* set versionsphp-7.1.4Joe Watkins2017-04-113-4/+4
|
* Fix buid with system libsqlite, see bug #74217PHP-7.1.4Remi Collet2017-03-294-2/+12
| | | | | | SQLITE_DETERMINISTIC only exists in recent version e.g. missing on 3.7 which is the default on RHEL/CentOS-7 and probably others (wheezy have 3.7, jessie 3.8...)
* relax more this testRemi Collet2017-03-291-1/+1
|
* relax test failing in fast computerRemi Collet2017-03-291-2/+4
|
* set versionsphp-7.1.4RC1Joe Watkins2017-03-283-4/+4
|
* update NEWSAnatol Belski2017-03-281-0/+3
|
* Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-282-47/+1
|\ | | | | | | | | | | * PHP-7.0: update NEWS Revert "Fixed bug #61471"
| * update NEWSAnatol Belski2017-03-281-0/+3
| |
| * Revert "Fixed bug #61471"Anatol Belski2017-03-282-47/+1
| | | | | | | | This reverts commit 80c8d84af303d2fddc9ba9f181c7117b9040811d.
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-280-0/+0
|\ \ | |/ | | | | | | * PHP-7.0: prepare next
| * prepare nextAnatol Belski2017-03-283-5/+9
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-280-0/+0
|\ \ | |/ | | | | | | * PHP-7.0: update NEWS
| * update NEWSAnatol Belski2017-03-281-0/+3
| |
* | update NEWSAnatol Belski2017-03-281-0/+3
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-272-1/+23
|\ \ | |/ | | | | | | | | * PHP-7.0: deps updated, cherry-pick 88642decf9ab59d206db515990886b0761bfa835 add test for bug #74230
| * deps updated, cherry-pick 88642decf9ab59d206db515990886b0761bfa835Anatol Belski2017-03-271-1/+1
| |
| * add test for bug #74230Anatol Belski2017-03-271-0/+22
| |
* | Don't retain mt_rand() seeds across requestsx-xiang2017-03-271-0/+2
| | | | | | | | | | In particular, this prevents manual seeding of mt_rand() to leak across requests.
* | Merge branch 'PHP-7.0' into PHP-7.1Derick Rethans2017-03-271-1/+1
|\ \ | |/
| * Forgot to update the output in the test tooDerick Rethans2017-03-271-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-271-2/+1
|\ \ | |/ | | | | | | * PHP-7.0: always use staging deps for CI, that's what we have a CI for as well
| * always use staging deps for CI, that's what we have a CI for as wellAnatol Belski2017-03-271-2/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Derick Rethans2017-03-271-5/+5
|\ \ | |/
| * Fixed test for #33415 due to data fixes.Derick Rethans2017-03-271-5/+5
| |
* | Updated to version 2017.2 (2017b)Derick Rethans2017-03-241-580/+618
| |
* | Empty mergeDerick Rethans2017-03-240-0/+0
|\ \ | |/
| * Updated to version 2017.2 (2017b)Derick Rethans2017-03-241-580/+618
| |
* | Added a test case to make sure microseconds work.Derick Rethans2017-03-241-0/+17
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-03-236-3964/+4159
|\ \ | |/
| * Fix sequencing UBNikita Popov2017-03-232-422/+445
| |
| * Fix lineno for AST_ZVAL nodesNikita Popov2017-03-233-3/+10
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Sara Golemon2017-03-233-1/+27
|\ \ | |/ | | | | | | * PHP-7.0: Fix bug where `yield from` is captured too greedily
| * Fix bug where `yield from` is captured too greedilySara Golemon2017-03-233-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the following piece of code: ```php function from1234($x) { return $x; } function foo($x) { yield from1234($x); } ``` The statement inside foo is taken as `yield from` `1234($x)` which is neither the intent, nor even legal syntax for an fcall. Do a lookahead for breaking non-label characters after the `yield from` and only accept it if they occur.
* | Merge branch 'PHP-7.0' into PHP-7.1Dmitry Stogov2017-03-231-0/+4
|\ \ | |/ | | | | | | * PHP-7.0: Fixed uninitialized data
| * Fixed uninitialized dataDmitry Stogov2017-03-231-0/+4
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-232-2/+2
|\ \ | |/ | | | | | | * PHP-7.0: adjust deps dir naming scheme
| * adjust deps dir naming schemeAnatol Belski2017-03-232-2/+2
| | | | | | | | not principal, just to have it same way as everywhere
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-03-216-9/+9
|\ \ | |/ | | | | | | * PHP-7.0: explicitly ignore php.ini for proc open tests
| * explicitly ignore php.ini for proc open testsAnatol Belski2017-03-216-9/+9
| | | | | | | | | | | | | | In some cases, when an environment is unclean, tests might get stuck fe when some incorrect ini file is loaded. As the test depends on the core only, it is safer to explicitly ignore the ini. Any ini can be passed in the cmd itself, if needed.
* | Fix for #73837: "new DateTime()" with a cast to doubleDerick Rethans2017-03-201-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Jakub Zelenka2017-03-201-2/+2
|\ \ | |/
| * Lower timeout in test for but #72333Jakub Zelenka2017-03-201-2/+2
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-03-174-10/+12
|\ \ | |/
| * Fix bug #74265Nikita Popov2017-03-174-10/+12
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Jakub Zelenka2017-03-171-1/+8
|\ \ | |/
| * Make test 002 for bug #65538 not to use https in cafileJakub Zelenka2017-03-171-1/+8
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Jakub Zelenka2017-03-171-3/+20
|\ \ | |/
| * Consume data by server in test for bug #72333Jakub Zelenka2017-03-171-3/+20
| | | | | | | | Client should be able to write more data and prevent time out
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-03-171-1/+8
|\ \ | |/
| * Fix AST start lineno for list nodesNikita Popov2017-03-171-1/+8
| | | | | | | | | | | | If the node is initialized with children, check if a child has a lower start lineno, similar to what we do for fixed-sized nodes as well.