summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.4' into PHP-5.5Lars Strojny2013-01-061-0/+71
|\
| * Adding test for bug #63462Lars Strojny2013-01-061-0/+71
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Anatoliy Belsky2012-12-052-0/+8
|\ \ | |/ | | | | | | * PHP-5.4: Two tests deactivated until #63688 was fixed
| * Merge branch 'PHP-5.3' into PHP-5.4Anatoliy Belsky2012-12-052-0/+8
| |\ | | | | | | | | | | | | * PHP-5.3: Two tests deactivated until #63688 was fixed
| | * Two tests deactivated until #63688 was fixedAnatoliy Belsky2012-12-052-0/+8
| | |
| | * Fixed bug #63377 (Segfault on output buffer)Xinchen Hui2012-11-301-0/+58
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Lars Strojny2012-12-021-0/+154
|\ \ \ | |/ /
| * | Adding tests for private and protected propertiesMarco Pivetta2012-12-022-73/+154
| | |
| * | Fixing test according to @jpauli's suggestionsMarco Pivetta2012-12-021-1/+0
| | |
| * | Adding regression test for behavior of magic methods with unset public ↵Marco Pivetta2012-12-021-0/+74
| | | | | | | | | | | | | | | | | | | | | | | | properties Verifies that after having unset a public property, any access to it, be it read or write, causes calls to public magic methods Signed-off-by: Marco Pivetta <ocramius@gmail.com>
* | | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2012-11-301-2/+2
|\ \ \ | |/ /
| * | fix bug #61272 ob_start callback get passed empty stringMichael Wallner2012-11-281-2/+2
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Johannes Schlüter2012-11-151-0/+3
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Johannes Schlüter2012-11-151-0/+3
| |\ \ | | |/
| | * Skip test if directory does not existJohannes Schlüter2012-11-151-0/+3
| | | | | | | | | | | | | | | Would be good to run this using a directory which is existing everywhere.
* | | Merge branch 'PHP-5.4'Xinchen Hui2012-10-105-0/+0
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-105-0/+0
| |\ \ | | |/
| | * Remove executable permission on incXinchen Hui2012-10-105-0/+0
| | |
* | | Merge branch 'PHP-5.4'Xinchen Hui2012-10-10106-0/+0
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-10106-0/+0
| |\ \ | | |/
| | * Remove executable permission on phptXinchen Hui2012-10-10106-0/+0
| | |
| * | fix test and move to proper placeStanislav Malyshev2012-09-301-40/+0
| | |
| * | synergy ftl. Removed duplicate fields.husman2012-09-301-39/+0
| | |
| * | adding test phpthusman2012-09-301-0/+79
| | |
* | | Drop obsolete testNikita Popov2012-09-011-11/+0
| | |
* | | Merge branch 'generators'Gustavo Lopes2012-09-011-10/+0
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generators: (70 commits) Fix typos Fix segfault when traversing a by-ref generator twice Make sure that exception is thrown on rewind() after closing too Remove implementation stubs for yield delegation Fix several issues and allow rewind only at/before first yield Run finally if generator is closed before finishing Finally with return now works in generators too Add dedicated opcode for returns from a generator Disallow serialization and unserialization Fix zts build (typo) Drop Generator::close() method Forgot to add test Support trivial finally in generators (no yield, no return) Fix implementation of Iterator interface Add T_YIELD in tokenizer_data.c Throw error also for return occuring before yield Fix throwing of exceptions within a generator Remove reference restrictions from foreach Require parenthesis around yield expressions Add some more tests ...
| * \ \ Merge remote-tracking branch 'php-src/master' into addGeneratorsSupportNikita Popov2012-08-261-1/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Zend/zend_language_parser.y Zend/zend_vm_execute.skl
| * \ \ \ Merge remote-tracking branch 'php-src/master' into addGeneratorsSupportNikita Popov2012-08-136-50/+7
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is just an intial merge. It does not yet make generators and finally work together. Conflicts: Zend/zend_language_scanner.c Zend/zend_language_scanner_defs.h Zend/zend_vm_def.h Zend/zend_vm_execute.h Zend/zend_vm_execute.skl Zend/zend_vm_opcodes.h
| * | | | | Remove reference restrictions from foreachNikita Popov2012-07-221-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | foreach only allowed variables to be traversed by reference. This never really made sense because a) Expressions like array(&$a, &$b) can be meaningfully iterated by-ref b) Function calls can return by-ref (so they can also be meaningfully iterated) c) Iterators could at least in theory also be iterated by-ref (not sure if any iterator makes use of this) With by-ref generators the restriction makes even less sense, so I removed it altogether.
* | | | | | Merge branch 'PHP-5.4'Xinchen Hui2012-08-311-6/+2
|\ \ \ \ \ \ | |_|_|/ / / |/| | | / / | | |_|/ / | |/| | |
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-08-311-6/+2
| |\ \ \ \ | | | |_|/ | | |/| |
| | * | | Fixed bug #62976 (Notice: could not be converted to int when comparing some ↵Xinchen Hui2012-08-311-6/+2
| | | | | | | | | | | | | | | | | | | | builtin classes)
* | | | | Support list in foreachXinchen Hui2012-08-251-1/+1
| |_|_|/ |/| | | | | | | | | | | RFC: https://wiki.php.net/rfc/foreachlist
* | | | Merge branch 'pull-request/132'Stanislav Malyshev2012-08-054-48/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pull-request/132: OK, bye bye JavaScript, let's just include credits before license Nicer (JSLint-compliant!) credits reveal JavaScript Removed now-unnecessary expose_php checks for logo Fixed small misalignment in prev commit Removed Logo GUIDs and replaced with Data URIs and div hidden with JS
| * | | | Removed Logo GUIDs and replaced with Data URIs and div hidden with JSAndrew Faulds2012-07-144-48/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - removed php_logo_guid() - removed php_egg_logo_guid() - removed php_real_logo_guid() - removed zend_logo_guid() - removed logo GUID handling - removed logo GUIDs from source - added logo data URIs instead for phpinfo() - added credits to phpinfo() page, but hidden by default
* | | | | Merge branch 'PHP-5.4'Xinchen Hui2012-07-291-0/+5
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-07-291-0/+5
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-5.3: Skip test while zend mm is disabled
| | * | Skip test while zend mm is disabledXinchen Hui2012-07-291-0/+5
| | | |
| | * | Fix bug #62109 tests\basic\bug46313-win.phpt failsAnatoliy Belsky2012-05-221-7/+8
| | | |
* | | | Merge branch 'PHP-5.4'Stanislav Malyshev2012-05-151-2/+2
|\ \ \ \ | |/ / / | | | / | |_|/ |/| | | | | | | | * PHP-5.4: Revert "Update test to fix breakage caused by the previous commit." fix test to 5.4.5-dev
| * | fix testStanislav Malyshev2012-05-151-2/+2
| | |
* | | Merge branch 'PHP-5.4'Anatoliy Belsky2012-04-161-0/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-5.4: Fix bug 61716 tests\basic\021.phpt fails
| * | Merge branch 'PHP-5.3' into PHP-5.4Anatoliy Belsky2012-04-161-0/+1
| |\ \ | | |/ | | | | | | | | | * PHP-5.3: Fix bug 61716 tests\basic\021.phpt fails
| | * Fix bug 61716 tests\basic\021.phpt failsAnatoliy Belsky2012-04-161-0/+1
| | |
* | | Merge branch 'PHP-5.4'Anatoliy Belsky2012-04-161-1/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-5.4: Fix bug 61683 tests\basic\bug20539.phpt fails
| * | Merge branch 'PHP-5.3' into PHP-5.4Anatoliy Belsky2012-04-161-1/+2
| |\ \ | | |/ | | | | | | | | | * PHP-5.3: Fix bug 61683 tests\basic\bug20539.phpt fails
| | * Fix bug 61683 tests\basic\bug20539.phpt failsAnatoliy Belsky2012-04-161-1/+2
| | |
| | * Fix test, parameter signatures was introduced only into 5.4Xinchen Hui2012-03-301-1/+1
| | |
| | * - fix bug #61541, Segfault when using ob_* in output_callbackreeze2012-03-291-2/+0
| | |
| | * Fixed bug #61043: Regression in magic_quotes_gpc fix (CVE-2012-0831)Gustavo André dos Santos Lopes2012-03-211-0/+11
| | |\ | | | | | | | | | | | | | | | | | | | | Merge commit 'refs/pull/12/head' of git://github.com/php/php-src into 5.3 Signed-off-by: Gustavo André dos Santos Lopes <cataphract@php.net>