xref: /PHP-5.5/ext/opcache/tests/issue0128.phpt (revision 1916aaa2)
1--TEST--
2ISSUE #128 (opcache_invalidate segmentation fault)
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7--SKIPIF--
8<?php require_once('skipif.inc'); ?>
9--FILE--
10<?php
11var_dump(opcache_invalidate('1'));
12var_dump("okey");
13?>
14--EXPECT--
15bool(false)
16string(4) "okey"
17