xref: /PHP-8.0/ext/opcache/tests/preload_006.phpt (revision 59c3ddab)
1--TEST--
2Handling of errors during linking
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7opcache.preload={PWD}/preload_inheritance_error_ind.inc
8--SKIPIF--
9<?php
10require_once('skipif.inc');
11if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
12if (getenv('SKIP_ASAN')) die('xfail Startup failure leak');
13?>
14--FILE--
15<?php
16echo "Foobar\n";
17?>
18--EXPECTF--
19Fatal error: Declaration of B::foo($bar) must be compatible with A::foo() in %spreload_inheritance_error.inc on line 8
20