mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
All these tests are meant to run with OPcache available, and some will even fail inevitably without it, so we add OPcache as SKIPIF requirement.
12 lines
221 B
PHP
12 lines
221 B
PHP
--TEST--
|
|
Incorrect CFG/SSA reconstruction
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
if (!is_int($info = gc_collect_cycles()) || ($info < 100)) {
|
|
echo gettype($info)."\n";
|
|
}
|
|
--EXPECT--
|
|
integer
|