Skip to content

Commit

Permalink
Merge branch 'PHP-8.2' into PHP-8.3
Browse files Browse the repository at this point in the history
* PHP-8.2:
  [skip ci] Mark some more macOS tests as flaky
  • Loading branch information
iluuu1994 committed Oct 13, 2024
2 parents 6ff4a2d + b6ca871 commit 5c8f42f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ext/posix/tests/posix_getgrnam_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ Test posix_getgrnam() function : basic functionality
posix
--SKIPIF--
<?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--
<?php
Expand Down
6 changes: 6 additions & 0 deletions ext/posix/tests/posix_getgroups_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Test posix_getgroups() function : basic functionality
--EXTENSIONS--
posix
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin") {
die("flaky Occasionally segfaults on macOS for unknown reasons");
}
?>
--FILE--
<?php
echo "Basic test of POSIX getgroups\n";
Expand Down

0 comments on commit 5c8f42f

Please sign in to comment.