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
44posix
55--SKIPIF--
66<?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+ }
811?>
912--FILE--
1013<?php
Original file line number Diff line number Diff line change 22Test posix_getgroups() function : basic functionality
33--EXTENSIONS--
44posix
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+ ?>
511--FILE--
612<?php
713 echo "Basic test of POSIX getgroups \n" ;
You can’t perform that action at this time.
0 commit comments