Merge branch 'PHP-8.3'

* PHP-8.3:
  Skip JIT test if php is compiled without jit
This commit is contained in:
Ilija Tovilo 2024-05-23 16:35:58 +02:00
commit 706e9ed058
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A

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