summaryrefslogtreecommitdiff
path: root/Zend/tests/bug35163_3.phpt
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-04-02 21:44:09 +0000
committerFelipe Pena <felipe@php.net>2010-04-02 21:44:09 +0000
commita140e70661b698d0f2527dadbc956bd2e98bc9b9 (patch)
tree3a21db828671d68e2e8567acfe2b449ab86fb05a /Zend/tests/bug35163_3.phpt
parent0758c8794d382b2a9afe7046b7bbe2b067848bbe (diff)
downloadphp-git-a140e70661b698d0f2527dadbc956bd2e98bc9b9.tar.gz
- Fixed bug #51445 (var_dump() invalid/slow *RECURSION* detection)
Diffstat (limited to 'Zend/tests/bug35163_3.phpt')
-rwxr-xr-xZend/tests/bug35163_3.phpt22
1 files changed, 4 insertions, 18 deletions
diff --git a/Zend/tests/bug35163_3.phpt b/Zend/tests/bug35163_3.phpt
index d2b3c25bfe..6c6a57f254 100755
--- a/Zend/tests/bug35163_3.phpt
+++ b/Zend/tests/bug35163_3.phpt
@@ -11,29 +11,15 @@ var_dump($a);
$a->b = null;
$a = null;
?>
---EXPECT--
-object(stdClass)#1 (1) {
+--EXPECTF--
+object(stdClass)#%d (1) {
["b"]=>
&array(3) {
[0]=>
int(2)
[1]=>
- &array(3) {
- [0]=>
- int(2)
- [1]=>
- *RECURSION*
- [2]=>
- *RECURSION*
- }
+ *RECURSION*
[2]=>
- &array(3) {
- [0]=>
- int(2)
- [1]=>
- *RECURSION*
- [2]=>
- *RECURSION*
- }
+ *RECURSION*
}
}