Skip to content

Commit 5be04e2

Browse files
committed
[skip ci] Skip segfaulting OOM test in GH actions on Win
This only fails on the PHP-8.3 branch, most likely to be related to the environment as discussed with Niels.
1 parent bf6a74d commit 5be04e2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ext/spl/tests/gh14639.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ memory_limit=2M
77
if (getenv("USE_ZEND_ALLOC") === "0") {
88
die("skip Zend MM disabled");
99
}
10+
if (getenv("GITHUB_ACTIONS") && substr(PHP_OS, 0, 3) == "WIN") {
11+
die("skip Segfaults in GitHub actions on Windows");
12+
}
1013
?>
1114
--FILE--
1215
<?php

0 commit comments

Comments
 (0)