xref: /PHP-7.3/Zend/tests/gc_031.phpt (revision ded3d984)
1--TEST--
2GC 031: gc_collect_roots() with GC turned off.
3--INI--
4zend.enable_gc=0
5--FILE--
6<?php
7gc_collect_cycles();
8echo "DONE\n";
9?>
10--EXPECT--
11DONE
12