mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
12 lines
151 B
PHP
12 lines
151 B
PHP
--TEST--
|
|
GC 031: gc_collect_roots() with GC turned off.
|
|
--INI--
|
|
zend.enable_gc=0
|
|
--FILE--
|
|
<?php
|
|
gc_collect_cycles();
|
|
echo "DONE\n";
|
|
?>
|
|
--EXPECT--
|
|
DONE
|