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

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Skip JIT test if php is compiled without jit
This commit is contained in:
Ilija Tovilo
2024-05-23 16:35:51 +02:00

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');