18 lines
399 B
Plaintext
18 lines
399 B
Plaintext
|
|
--TEST--
|
||
|
|
Opcache should replay compilation warnings if opcache.record_warnings=1
|
||
|
|
--INI--
|
||
|
|
opcache.record_warnings=1
|
||
|
|
--EXTENSIONS--
|
||
|
|
opcache
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
require __DIR__ . '/warning_replay.inc';
|
||
|
|
require __DIR__ . '/warning_replay.inc';
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Warning: Unsupported declare 'unknown' in %swarning_replay.inc on line 3
|
||
|
|
|
||
|
|
Warning: Unsupported declare 'unknown' in %swarning_replay.inc on line 3
|