mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
[skip ci] Mark some more macOS tests as flaky
This commit is contained in:
parent
a3eb1fd86d
commit
b6ca871396
2 changed files with 10 additions and 1 deletions
|
@ -5,6 +5,9 @@ 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
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue