mirror of
https://github.com/php/php-src.git
synced 2026-04-19 14:01:01 +02:00
21 lines
385 B
PHP
21 lines
385 B
PHP
--TEST--
|
|
Bug #81256: Assertion `zv != ((void *)0)' failed for "preload" with JIT
|
|
--EXTENSIONS--
|
|
opcache
|
|
--SKIPIF--
|
|
<?php
|
|
if (PHP_OS_FAMILY === "Windows") die("skip Windows does not support preloading");
|
|
?>
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.jit_buffer_size=1M
|
|
opcache.jit=function
|
|
opcache.preload={PWD}/preload_bug81256.inc
|
|
--FILE--
|
|
<?php
|
|
foo();
|
|
?>
|
|
--EXPECT--
|
|
Hello
|