8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f93188 commit 4b6b067Copy full SHA for 4b6b067
phpunit
@@ -164,8 +164,8 @@ if (isset($argv[1]) && 'symfony' === $argv[1]) {
164
unlink($file);
165
}
166
167
- if ($procStatus) {
168
- $exit = 1;
+ // Fail on any individual component failures but ignore STATUS_STACK_BUFFER_OVERRUN (-1073740791) on Windows when APCu is enabled
+ if ($procStatus && ('\\' !== DIRECTORY_SEPARATOR || !extension_loaded('apcu') || !ini_get('apc.enable_cli') || -1073740791 !== $procStatus)) {
169
echo "\033[41mKO\033[0m $component\n\n";
170
} else {
171
echo "\033[32mOK\033[0m $component\n\n";
0 commit comments