Merge branch 'PHP-8.4'

* PHP-8.4:
  [ci skip] Skip test under ASAN
This commit is contained in:
Niels Dossche 2024-09-30 22:46:12 +02:00
commit c65bb64cba
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5

View file

@ -5,6 +5,9 @@ GH-15168 (stack overflow in json_encode())
if (ini_get('zend.max_allowed_stack_size') === false) { if (ini_get('zend.max_allowed_stack_size') === false) {
die('skip No stack limit support'); die('skip No stack limit support');
} }
if (getenv('SKIP_ASAN)) {
die('skip ASAN needs different stack limit setting due to more stack space usage');
}
?> ?>
--INI-- --INI--
zend.max_allowed_stack_size=512K zend.max_allowed_stack_size=512K