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

Report parse errors during preloading

This commit is contained in:
Nikita Popov
2020-11-03 16:24:54 +01:00
parent 9fd8e00f1a
commit b009573f4e
3 changed files with 22 additions and 0 deletions

View File

@@ -4480,6 +4480,10 @@ static int accel_preload(const char *config, zend_bool in_child)
destroy_op_array(op_array);
efree_size(op_array, sizeof(zend_op_array));
} else {
if (EG(exception)) {
zend_exception_error(EG(exception), E_ERROR);
}
CG(unclean_shutdown) = 1;
ret = FAILURE;
}

View File

@@ -0,0 +1,2 @@
<?php
parse error

View File

@@ -0,0 +1,16 @@
--TEST--
Parse error in preload script
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
opcache.preload={PWD}/preload_parse_error.inc
--SKIPIF--
<?php
require_once('skipif.inc');
if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
?>
--FILE--
OK
--EXPECTF--
Parse error: syntax error, unexpected identifier "error" in %s on line %d