Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  Use absolute paths in OPCache tests when calling `opcache_compile_file()`
This commit is contained in:
George Peter Banyard 2023-01-12 15:48:01 +00:00
commit 31fd34aa4c
No known key found for this signature in database
GPG key ID: 3306078E3194AEBD
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
<?php
opcache_compile_file('ext/opcache/tests/gh9968-2.inc');
opcache_compile_file(__DIR__ . '/gh9968-2.inc');

View file

@ -4,4 +4,4 @@ spl_autoload_register(function($class) {
var_dump($class);
new Abc;
});
opcache_compile_file('preload_const_autoload_2.inc');
opcache_compile_file(__DIR__ . '/preload_const_autoload_2.inc');