Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  [skip ci] Mark some more macOS tests as flaky
This commit is contained in:
Ilija Tovilo 2024-10-13 02:07:11 +02:00
commit 5c8f42f05c
No known key found for this signature in database
GPG key ID: 5050C66BFCD1015A
2 changed files with 10 additions and 1 deletions

View file

@ -4,7 +4,10 @@ Test posix_getgrnam() function : basic functionality
posix posix
--SKIPIF-- --SKIPIF--
<?php <?php
if (!posix_getgroups()) die('skip - groups unavailable (ci)'); if (!posix_getgroups()) die('skip - groups unavailable (ci)');
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin") {
die("flaky Occasionally segfaults on macOS for unknown reasons");
}
?> ?>
--FILE-- --FILE--
<?php <?php

View file

@ -2,6 +2,12 @@
Test posix_getgroups() function : basic functionality Test posix_getgroups() function : basic functionality
--EXTENSIONS-- --EXTENSIONS--
posix posix
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin") {
die("flaky Occasionally segfaults on macOS for unknown reasons");
}
?>
--FILE-- --FILE--
<?php <?php
echo "Basic test of POSIX getgroups\n"; echo "Basic test of POSIX getgroups\n";