File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ Test posix_getgrnam() function : basic functionality
4
4
posix
5
5
--SKIPIF--
6
6
<?php
7
- if (!posix_getgroups ()) die ('skip - groups unavailable (ci) ' );
7
+ 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
+ }
8
11
?>
9
12
--FILE--
10
13
<?php
Original file line number Diff line number Diff line change 2
2
Test posix_getgroups() function : basic functionality
3
3
--EXTENSIONS--
4
4
posix
5
+ --SKIPIF--
6
+ <?php
7
+ if (getenv ("GITHUB_ACTIONS " ) && PHP_OS_FAMILY === "Darwin " ) {
8
+ die ("flaky Occasionally segfaults on macOS for unknown reasons " );
9
+ }
10
+ ?>
5
11
--FILE--
6
12
<?php
7
13
echo "Basic test of POSIX getgroups \n" ;
You can’t perform that action at this time.
0 commit comments