summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/bug68252.phpt
blob: bc2e5a0fb68cce007d734960d9fc2ce03722415e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #68252 (segfault in Zend/zend_hash.c in function _zend_hash_del_el)
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.fast_shutdown=1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* run this test script with valgrind */
function a() {
	echo "okey";
}

create_function('', 'var_dump("22");');

a();
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
okey