8000 [appveyor] Ignore failures due to STATUS_ACCESS_VIOLATION errors · symfony/symfony@07183db · GitHub
[go: up one dir, main page]

Skip to content

Commit 07183db

Browse files
[appveyor] Ignore failures due to STATUS_ACCESS_VIOLATION errors
1 parent a842eda commit 07183db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phpunit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ if (isset($argv[1]) && 'symfony' === $argv[1]) {
160160
unlink($file);
161161
}
162162

163-
// Fail on any individual component failures but ignore STATUS_STACK_BUFFER_OVERRUN (-1073740791) on Windows when APCu is enabled
164-
if ($procStatus && ('\\' !== DIRECTORY_SEPARATOR || !extension_loaded('apcu') || !ini_get('apc.enable_cli') || -1073740791 !== $procStatus)) {
163+
// Fail on any individual component failures but ignore STATUS_STACK_BUFFER_OVERRUN (-1073740791/0xC0000409) and STATUS_ACCESS_VIOLATION (-1073741819/0xC0000005) on Windows when APCu is enabled
164+
if ($procStatus && ('\\' !== DIRECTORY_SEPARATOR || !extension_loaded('apcu') || !ini_get('apc.enable_cli') || (-1073740791 !== $procStatus && -1073741819 !== $procStatus))) {
165165
$exit = $procStatus;
166166
echo "\033[41mKO\033[0m $component\n\n";
167167
} else {

0 commit comments

Comments
 (0)
0