diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-06-04 09:57:17 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-06-04 09:57:17 +0400 |
commit | 3d87391cc06fe87344536e88ac74ded22b0195cf (patch) | |
tree | 6b647d22fffaf357635a45d309f96fbc22645450 | |
parent | 6e7338700e8df8285c1d352b249e4970e35df472 (diff) | |
download | php-git-3d87391cc06fe87344536e88ac74ded22b0195cf.tar.gz |
Reference counters in PHPNG may have different values
-rw-r--r-- | Zend/tests/gc_032.phpt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Zend/tests/gc_032.phpt b/Zend/tests/gc_032.phpt index 615b008e65..84ce2ff7e6 100644 --- a/Zend/tests/gc_032.phpt +++ b/Zend/tests/gc_032.phpt @@ -11,26 +11,26 @@ $b =& $a; $a[0][0] = $a; debug_zval_dump($a); ?> ---EXPECT-- -array(1) refcount(1){ +--EXPECTF-- +array(1) refcount(%d){ [0]=> - array(1) refcount(3){ + array(1) refcount(%d){ [0]=> - array(1) refcount(3){ + array(1) refcount(%d){ [0]=> *RECURSION* } } } -array(1) refcount(1){ +array(1) refcount(%d){ [0]=> - array(1) refcount(3){ + array(1) refcount(%d){ [0]=> - array(1) refcount(1){ + array(1) refcount(%d){ [0]=> - array(1) refcount(3){ + array(1) refcount(%d){ [0]=> - array(1) refcount(1){ + array(1) refcount(%d){ [0]=> *RECURSION* } |