Skip to content

Commit fc06e0c

Browse files
committed
Mark failing curl test on macOS x64 as xfail
Exactly these tests are failing on all our macOS x64 CI runners for about a week. For now we mark them as xfail, to get back to a green CI pipeline. Closes GH-16002.
1 parent ee95ee7 commit fc06e0c

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

ext/curl/tests/bug48203_multi.phpt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Variation of bug #48203 with curl_multi_exec (Crash when file pointers passed to curl are closed before calling curl_multi_exec)
33
--EXTENSIONS--
44
curl
5+
--SKIPIF--
6+
<?php
7+
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
8+
die("xfail Test fails for unknown reasons");
9+
}
10+
?>
511
--FILE--
612
<?php
713
include 'server.inc';

ext/curl/tests/bug71523.phpt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes while curl_multi_exec)
33
--EXTENSIONS--
44
curl
5+
--SKIPIF--
6+
<?php
7+
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
8+
die("xfail Test fails for unknown reasons");
9+
}
10+
?>
511
--FILE--
612
<?php
713

ext/curl/tests/curl_basic_018.phpt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Test curl_setopt() with curl_multi function with basic functionality
44
TestFest 2009 - AFUP - Thomas Rabaix <thomas.rabaix@gmail.com>
55
--EXTENSIONS--
66
curl
7+
--SKIPIF--
8+
<?php
9+
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
10+
die("xfail Test fails for unknown reasons");
11+
}
12+
?>
713
--FILE--
814
<?php
915
include 'server.inc';

ext/curl/tests/curl_multi_getcontent_basic3.phpt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Rein Velt (rein@velt.org)
55
#TestFest Utrecht 20090509
66
--EXTENSIONS--
77
curl
8+
--SKIPIF--
9+
<?php
10+
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
11+
die("xfail Test fails for unknown reasons");
12+
}
13+
?>
814
--FILE--
915
<?php
1016
//CURL_MULTI_GETCONTENT TEST

0 commit comments

Comments
 (0)