mirror of
https://github.com/php/php-src.git
synced 2026-04-10 01:23:53 +02:00
opcache_reset() only schedules the restart. Under circumstances, the follow up requests might run uncached, until the restart condition is met. To mitigate the false positives caused by this behavior, any tests using opcache_reset() should not be put in between other tests. Thus, moving the corresponding test to be executed last.
25 lines
529 B
PHP
25 lines
529 B
PHP
--TEST--
|
|
Test basic logging for the Opcache
|
|
--DESCRIPTION--
|
|
This test runs a simple PHP script and ensures the Opcache
|
|
outputs the correct logging at the highest log_verbosity_level
|
|
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_cache_only=0
|
|
opcache.log_verbosity_level=4
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
echo "Foo Bar\n";
|
|
opcache_reset();
|
|
echo "Opcache reset";
|
|
?>
|
|
--EXPECTF--
|
|
%s Message Cached script '%sbasic_logging%s'
|
|
Foo Bar
|
|
%s Debug Restart Scheduled! Reason: user
|
|
Opcache reset
|