mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
If opcache.log_verbosity_level is greater than 1, opcache will raise warnings, which will be written to stderr in the default case. These warnings are actually to be expected, but would break the test, so we make sure that the log_verbosity_level is 1 when running this test.
17 lines
334 B
PHP
17 lines
334 B
PHP
--TEST--
|
|
Bug #66461 (PHP crashes if opcache.interned_strings_buffer=0)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
opcache.log_verbosity_level=1
|
|
opcache.file_update_protection=0
|
|
opcache.interned_strings_buffer=0
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
echo "ok\n";
|
|
--EXPECT--
|
|
ok
|