1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Skip JIT test if php is compiled without jit

This commit is contained in:
Ilija Tovilo
2024-05-23 16:35:29 +02:00
parent 9506ca6001
commit 04c9749e35

View File

@@ -7,6 +7,10 @@ opcache.jit=disable
opcache.jit_buffer_size=32M
--EXTENSIONS--
opcache
--SKIPIF--
<?php
if (ini_get('opcache.jit') === false) die('skip PHP is compiled without JIT');
?>
--FILE--
<?php
ini_set('opcache.jit', 'tracing');