summaryrefslogtreecommitdiff
path: root/Zend/tests
Commit message (Collapse)AuthorAgeFilesLines
* Update test script to make sure the error occurredXinchen Hui2013-04-041-1/+2
|
* Use 5.4 specifical warnnig & Update NEWsXinchen Hui2013-04-041-9/+7
|
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-04-041-0/+15
|\
| * Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: ↵Xinchen Hui2013-04-041-0/+15
| | | | | | | | segfault)
* | Fix #64572: Clean up after the testptarjan2013-04-031-0/+1
| | | | | | | | Lets not leave stuff lying around.
* | Update test scriptXinchen Hui2013-03-261-0/+2
| |
* | Fixed bug #64515 (Memoryleak when using the same variablename 2times in ↵Xinchen Hui2013-03-261-0/+10
| | | | | | | | function declaration)
* | Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11)Xinchen Hui2013-03-214-10/+138
| |
* | Fixed bug #63976 (Parent class incorrectly using child constant in class ↵Dmitry Stogov2013-03-191-0/+20
| | | | | | | | property)
* | Partial fix for bug #64239Dmitry Stogov2013-03-191-0/+22
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2013-03-191-0/+13
|\ \ | |/ | | | | | | * PHP-5.3: Fixed bug #62343 (Show class_alias In get_declared_classes())
| * Fixed bug #62343 (Show class_alias In get_declared_classes())Dmitry Stogov2013-03-191-0/+13
| |
* | Fixed bug #64417 (ArrayAccess::&offsetGet() in a trait causes fatal error)Dmitry Stogov2013-03-191-0/+39
| |
* | Fixed confused exception message while user threw exceptionXinchen Hui2013-03-091-0/+24
| |
* | Fixed bug #64235 (Insteadof not work for class method in 5.4.11)Xinchen Hui2013-02-215-3/+72
| | | | | | | | | | | | As we discussed with stefan, we think previous of allowing use with classes is a bug, should be forbided, anyway, the error message should be improved.
* | Fixed bug #64070 (Inheritance with Traits failed with error)Dmitry Stogov2013-02-181-0/+36
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Stanislav Malyshev2013-01-181-0/+74
|\ \ | |/ | | | | | | * PHP-5.3: fix bug #63462 (Magic methods called twice for unset protected properties)
| * fix bug #63462 (Magic methods called twice for unset protected properties)Stanislav Malyshev2013-01-181-0/+74
| |
* | fix bug #63982: isset() inconsistently produces a fatal error on protected ↵Stanislav Malyshev2013-01-131-0/+15
| | | | | | | | property
* | different OSes have different messages, and that's not what the test is ↵Stanislav Malyshev2013-01-132-3/+3
| | | | | | | | about anyway
* | Fixed bug #63882 (zend_std_compare_objects crash on recursion)Dmitry Stogov2013-01-091-0/+15
| |
* | spellingDmitry Stogov2012-12-251-1/+1
| |
* | Traits refactoringDmitry Stogov2012-12-2513-12/+119
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Johannes Schlüter2012-12-131-0/+53
|\ \ | |/
| * Fix Bug #63762 Sigsegv when Exception::$trace is changed by userJohannes Schlüter2012-12-131-0/+53
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2012-11-291-0/+58
|\ \ | |/ | | | | | | | | | | | | * PHP-5.3: Fixed bug #63635 (Segfault in gc_collect_cycles) Conflicts: NEWS
| * Fixed bug #63635 (Segfault in gc_collect_cycles)Dmitry Stogov2012-11-291-0/+58
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2012-11-201-0/+30
|\ \ | |/ | | | | | | | | | | | | * PHP-5.3: Fixed bug #63468 (wrong called method as callback with inheritance) Conflicts: NEWS
| * Fixed bug #63468 (wrong called method as callback with inheritance)Dmitry Stogov2012-11-201-0/+30
| |
* | Update test scriptXinchen Hui2012-10-231-3/+3
| |
* | Test for #63336, xfail nowXinchen Hui2012-10-231-0/+24
| |
* | Fixed bug #63305 (zend_mm_heap corrupted with traits)Xinchen Hui2012-10-231-0/+43
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-191-0/+23
|\ \ | |/
| * preg indenpent test script for #63055Xinchen Hui2012-10-191-0/+23
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-105-0/+0
|\ \ | |/
| * Remove executable permission on incXinchen Hui2012-10-105-0/+0
| |
* | Remove executable permission on phptXinchen Hui2012-10-106-0/+0
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-10267-0/+0
|\ \ | |/
| * Remove executable permission on phptXinchen Hui2012-10-10268-0/+0
| |
* | Fixed bug #63219 (Segfault when aliasing trait method when autoloader throws ↵Xinchen Hui2012-10-081-0/+18
| | | | | | | | excpetion)
* | Fix bug #63173: Crash when invoking invalid array callbackNikita Popov2012-09-271-0/+12
| | | | | | | | | | | | The code did not check whether the zend_hash_index_find calls succeded, so PHP crashed when an array callback was called that contains two elements which don't have the indices 0 and 1.
* | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2012-09-211-0/+36
|\ \ | |/ | | | | | | | | | | | | * PHP-5.3: Fixed bug #63111 (is_callable() lies for abstract static method) Conflicts: NEWS
| * Fixed bug #63111 (is_callable() lies for abstract static method)Dmitry Stogov2012-09-211-0/+36
| |
| * Fixed bug #61442 (exception threw in __autoload can not be catched)Xinchen Hui2012-09-191-0/+30
| |
* | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2012-09-064-0/+84
|\ \ | |/ | | | | | | | | | | | | | | * PHP-5.3: - Fixed bug #61767 (Shutdown functions not called in certain error situation) - Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function) Conflicts: NEWS Zend/zend_object_handlers.c
| * - Fixed bug #61767 (Shutdown functions not called in certain error situation)Dmitry Stogov2012-09-064-0/+84
| | | | | | | | - Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function)
* | Fixed bug #62907 (Double free when use traits)Dmitry Stogov2012-09-051-2/+0
| |
* | Bug #62956: fixing private method signature validationLars Strojny2012-08-282-1/+22
| | | | | | | | | | In inheritance, if both methods are private, don not enforce the same signature.
* | Add test for #62907Xinchen Hui2012-08-261-0/+24
| |
* | Fixed bug #62358 (Segfault when using traits a lot)Xinchen Hui2012-08-231-0/+32
| |