Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ext/curl/tests/bug48203_multi.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Variation of bug #48203 with curl_multi_exec (Crash when file pointers passed to curl are closed before calling curl_multi_exec)
--EXTENSIONS--
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE--
<?php
include 'server.inc';
Expand Down
6 changes: 6 additions & 0 deletions ext/curl/tests/bug71523.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes while curl_multi_exec)
--EXTENSIONS--
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE--
<?php

Expand Down
6 changes: 6 additions & 0 deletions ext/curl/tests/curl_basic_018.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Test curl_setopt() with curl_multi function with basic functionality
TestFest 2009 - AFUP - Thomas Rabaix <thomas.rabaix@gmail.com>
--EXTENSIONS--
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE--
<?php
include 'server.inc';
Expand Down
6 changes: 6 additions & 0 deletions ext/curl/tests/curl_multi_getcontent_basic3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Rein Velt (rein@velt.org)
#TestFest Utrecht 20090509
--EXTENSIONS--
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE--
<?php
//CURL_MULTI_GETCONTENT TEST
Expand Down
Loading