diff options
-rwxr-xr-x | Zend/tests/bug22725.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug27304.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug29104.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug29210.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug30519.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug30702.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug30791.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug30889.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug32296.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug32427.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug32660.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug32674.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug32833.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug33257.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug34712.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug35437.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug37811.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug38220.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug40770.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug40809.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug41075.phpt | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/Zend/tests/bug22725.phpt b/Zend/tests/bug22725.phpt index aadd81be5a..5f3c258b14 100755 --- a/Zend/tests/bug22725.phpt +++ b/Zend/tests/bug22725.phpt @@ -1,5 +1,5 @@ --TEST-- -bug #22725 (A derived class can call a parent's protected method that calls a private method) +Bug #22725 (A derived class can call a parent's protected method that calls a private method) --SKIPIF-- <?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?> --FILE-- diff --git a/Zend/tests/bug27304.phpt b/Zend/tests/bug27304.phpt index 51e392d59b..0f248346cf 100755 --- a/Zend/tests/bug27304.phpt +++ b/Zend/tests/bug27304.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #27304 +Bug #27304 (Static functions don't function properly) --FILE-- <?php diff --git a/Zend/tests/bug29104.phpt b/Zend/tests/bug29104.phpt index c7afbee073..788b2190bf 100644 --- a/Zend/tests/bug29104.phpt +++ b/Zend/tests/bug29104.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #29104 Function declaration in method doesn't work +Bug #29104 (Function declaration in method doesn't work) --FILE-- <?php class A diff --git a/Zend/tests/bug29210.phpt b/Zend/tests/bug29210.phpt index 6290e8fc3f..3bae8064b9 100644 --- a/Zend/tests/bug29210.phpt +++ b/Zend/tests/bug29210.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #29210 Function: is_callable - no support for private and protected classes +Bug #29210 (Function is_callable does not support private and protected methods) --FILE-- <?php class test_class { diff --git a/Zend/tests/bug30519.phpt b/Zend/tests/bug30519.phpt index 185d21aef7..7d70cba071 100755 --- a/Zend/tests/bug30519.phpt +++ b/Zend/tests/bug30519.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #30519 Interface not existing says Class not found +Bug #30519 (Interface not existing says Class not found) --FILE-- <?php class test implements a { diff --git a/Zend/tests/bug30702.phpt b/Zend/tests/bug30702.phpt index 17e44a3895..f23b1ecd44 100644 --- a/Zend/tests/bug30702.phpt +++ b/Zend/tests/bug30702.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #30702 cannot initialize class variable from class constant +Bug #30702 (cannot initialize class variable from class constant) --FILE-- <?php class foo { diff --git a/Zend/tests/bug30791.phpt b/Zend/tests/bug30791.phpt index 556192ad55..e9991f3ad5 100755 --- a/Zend/tests/bug30791.phpt +++ b/Zend/tests/bug30791.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #30791 magic methods (__sleep/__wakeup/__toString) call __call if object is overloaded +Bug #30791 (magic methods (__sleep/__wakeup/__toString) call __call if object is overloaded) --FILE-- <?php diff --git a/Zend/tests/bug30889.phpt b/Zend/tests/bug30889.phpt index 4f58cbf5a5..fb92edfb0f 100644 --- a/Zend/tests/bug30889.phpt +++ b/Zend/tests/bug30889.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #30889 Conflict between __get/__set and ++ operator +Bug #30889 (Conflict between __get/__set and ++ operator) --FILE-- <?php class overloaded diff --git a/Zend/tests/bug32296.phpt b/Zend/tests/bug32296.phpt index 81fe25df8b..b3e705ec14 100755 --- a/Zend/tests/bug32296.phpt +++ b/Zend/tests/bug32296.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #32296 get_class_methods output has changed between 5.0.2 and 5.0.3 +Bug #32296 (get_class_methods output has changed between 5.0.2 and 5.0.3) --FILE-- <?php abstract class space{ diff --git a/Zend/tests/bug32427.phpt b/Zend/tests/bug32427.phpt index 0a5cc4f893..9b2d818659 100644 --- a/Zend/tests/bug32427.phpt +++ b/Zend/tests/bug32427.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #32427 Interfaces are not allowed 'static' access modifier +Bug #32427 (Interfaces are not allowed 'static' access modifier) --FILE-- <?php diff --git a/Zend/tests/bug32660.phpt b/Zend/tests/bug32660.phpt index a598954dda..3a307189a4 100755 --- a/Zend/tests/bug32660.phpt +++ b/Zend/tests/bug32660.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #32660 Assignment by reference causes crash when field access is overloaded (__get) +Bug #32660 (Assignment by reference causes crash when field access is overloaded (__get)) --FILE-- <?php class A diff --git a/Zend/tests/bug32674.phpt b/Zend/tests/bug32674.phpt index 547bcec096..771270f93b 100644 --- a/Zend/tests/bug32674.phpt +++ b/Zend/tests/bug32674.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #32674 exception in iterator causes crash +Bug #32674 (exception in iterator causes crash) --FILE-- <?php class collection implements Iterator { diff --git a/Zend/tests/bug32833.phpt b/Zend/tests/bug32833.phpt index cf66bb4fb9..e58c8453d9 100644 --- a/Zend/tests/bug32833.phpt +++ b/Zend/tests/bug32833.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #32833 Invalid opcode +Bug #32833 (Invalid opcode with $a[] .= '') --FILE-- <?php $test = array(); diff --git a/Zend/tests/bug33257.phpt b/Zend/tests/bug33257.phpt index 2ce3e2fe96..c17ddfd17f 100755 --- a/Zend/tests/bug33257.phpt +++ b/Zend/tests/bug33257.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #33257 array_splice() inconsistent when passed function instead of variable +Bug #33257 (array_splice() inconsistent when passed function instead of variable) --INI-- error_reporting=4095 --FILE-- diff --git a/Zend/tests/bug34712.phpt b/Zend/tests/bug34712.phpt index db7860cd38..8176292bd2 100755 --- a/Zend/tests/bug34712.phpt +++ b/Zend/tests/bug34712.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #34712 zend.ze1_compatibility_mode = on segfault +Bug #34712 (zend.ze1_compatibility_mode = on segfault) --INI-- zend.ze1_compatibility_mode=1 error_reporting=4095 diff --git a/Zend/tests/bug35437.phpt b/Zend/tests/bug35437.phpt index eecdee9683..73222a9f23 100755 --- a/Zend/tests/bug35437.phpt +++ b/Zend/tests/bug35437.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #35437 Segfault or Invalid Opcode 137/1/4 +Bug #35437 (Segfault or Invalid Opcode 137/1/4) --FILE-- <?php function err2exception($errno, $errstr) diff --git a/Zend/tests/bug37811.phpt b/Zend/tests/bug37811.phpt index dc3ef93d6f..70c4c90ede 100755 --- a/Zend/tests/bug37811.phpt +++ b/Zend/tests/bug37811.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #37811 define not using toString on objects +Bug #37811 (define not using toString on objects) --FILE-- <?php diff --git a/Zend/tests/bug38220.phpt b/Zend/tests/bug38220.phpt index d64e409778..bee3ffc75d 100755 --- a/Zend/tests/bug38220.phpt +++ b/Zend/tests/bug38220.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #38220 Crash on some object operations +Bug #38220 (Crash on some object operations) --FILE-- <?php class drv { diff --git a/Zend/tests/bug40770.phpt b/Zend/tests/bug40770.phpt index b71d1b952f..c4c78c2220 100755 --- a/Zend/tests/bug40770.phpt +++ b/Zend/tests/bug40770.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #40770 Apache child exits when PHP memory limit reached +Bug #40770 (Apache child exits when PHP memory limit reached) --INI-- memory_limit=8M --SKIPIF-- diff --git a/Zend/tests/bug40809.phpt b/Zend/tests/bug40809.phpt index c80849a10a..08fc89f553 100755 --- a/Zend/tests/bug40809.phpt +++ b/Zend/tests/bug40809.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #40809 Poor perfomance of ".=" +Bug #40809 (Poor perfomance of ".=") --FILE-- <?php error_reporting(E_ALL|E_STRICT); diff --git a/Zend/tests/bug41075.phpt b/Zend/tests/bug41075.phpt index ddeb7cc0c3..0751cbd690 100644 --- a/Zend/tests/bug41075.phpt +++ b/Zend/tests/bug41075.phpt @@ -1,5 +1,5 @@ --TEST-- -Bug #41075(memleak when creating default object caused exception) +Bug #41075 (memleak when creating default object caused exception) --FILE-- <?php |