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 a3eb1fd commit b6ca871Copy full SHA for b6ca871
ext/posix/tests/posix_getgrnam_basic.phpt
@@ -4,7 +4,10 @@ Test posix_getgrnam() function : basic functionality
4
posix
5
--SKIPIF--
6
<?php
7
- if (!posix_getgroups()) die('skip - groups unavailable (ci)');
+if (!posix_getgroups()) die('skip - groups unavailable (ci)');
8
+if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin") {
9
+ die("flaky Occasionally segfaults on macOS for unknown reasons");
10
+}
11
?>
12
--FILE--
13
ext/posix/tests/posix_getgroups_basic.phpt
@@ -2,6 +2,12 @@
2
Test posix_getgroups() function : basic functionality
3
--EXTENSIONS--
+--SKIPIF--
+<?php
+?>
echo "Basic test of POSIX getgroups\n";
0 commit comments