mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Ignore optional warning output in test
This commit is contained in:
commit
cb0d04e9f4
1 changed files with 12 additions and 2 deletions
|
@ -25,11 +25,21 @@ $cmd = [
|
||||||
];
|
];
|
||||||
|
|
||||||
$proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
|
$proc = proc_open($cmd, [['null'], ['pipe', 'w'], ['redirect', 1]], $pipes);
|
||||||
echo stream_get_contents($pipes[1]);
|
$output = stream_get_contents($pipes[1]);
|
||||||
|
|
||||||
|
// Ignore warnings if opcache loads twice or duplicate modules are loaded by searching for the preloaded marker
|
||||||
|
$flag = false;
|
||||||
|
foreach (explode("\n", $output) as $line) {
|
||||||
|
if ($line === "preloaded") {
|
||||||
|
$flag = true;
|
||||||
|
}
|
||||||
|
if ($flag) {
|
||||||
|
echo $line, "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
%A
|
|
||||||
preloaded
|
preloaded
|
||||||
PHP %s
|
PHP %s
|
||||||
Copyright (c) The PHP Group
|
Copyright (c) The PHP Group
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue