1--TEST--
2Test ACCEL_LOG_FATAL will cause the process to die even if not logged
3--DESCRIPTION--
4This test forces the opcache to error by setting memory_comsumption very large.
5The resulting ACCEL_LOG_FATAL should cause php to die.
6The process should die regardless of the log_verbosity_level.
7--INI--
8opcache.enable=1
9opcache.enable_cli=1
10opcache.file_cache_only=0
11opcache.file_cache_fallback=0
12opcache.memory_consumption=999999999
13opcache.log_verbosity_level=-1
14--SKIPIF--
15<?php
16require_once('skipif.inc');
17if (getenv('SKIP_ASAN')) die('xfail Startup failure leak');
18?>
19--FILE--
20<?php
21var_dump("Script should fail");
22?>
23--EXPECT--
24