mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
Fixed test bug #61892
This commit is contained in:
parent
75d23f5714
commit
d74d88fbb9
2 changed files with 39 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
--TEST--
|
||||
GC 029: GC and destructors
|
||||
--SKIPIF--
|
||||
<?php if (PHP_ZTS) { print "skip only for no-zts build"; }
|
||||
--INI--
|
||||
zend.enable_gc=1
|
||||
--FILE--
|
||||
|
|
37
Zend/tests/gc_029_zts.phpt
Normal file
37
Zend/tests/gc_029_zts.phpt
Normal file
|
@ -0,0 +1,37 @@
|
|||
--TEST--
|
||||
GC 029: GC and destructors
|
||||
--SKIPIF--
|
||||
<?php if (!PHP_ZTS) { print "skip only for zts build"; }
|
||||
--INI--
|
||||
zend.enable_gc=1
|
||||
--FILE--
|
||||
<?php
|
||||
class Foo {
|
||||
public $bar;
|
||||
public $x = array(1,2,3);
|
||||
function __destruct() {
|
||||
if ($this->bar !== null) {
|
||||
$this->x = null;
|
||||
unset($this->bar);
|
||||
}
|
||||
}
|
||||
}
|
||||
class Bar {
|
||||
public $foo;
|
||||
function __destruct() {
|
||||
if ($this->foo !== null) {
|
||||
unset($this->foo);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
$foo = new Foo();
|
||||
$bar = new Bar();
|
||||
$foo->bar = $bar;
|
||||
$bar->foo = $foo;
|
||||
unset($foo);
|
||||
unset($bar);
|
||||
var_dump(gc_collect_cycles());
|
||||
?>
|
||||
--EXPECT--
|
||||
int(3)
|
Loading…
Add table
Add a link
Reference in a new issue