Skip to content

ext/curl: mark certain tests as xfail on curl 8.10.0 #16007

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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
5 changes: 3 additions & 2 deletions ext/curl/tests/bug48203_multi.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Variation of bug #48203 with curl_multi_exec (Crash when file pointers passed to
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
if (curl_version()['version_number'] === 0x080a00) {
// https://github.com/php/php-src/issues/15997
die('xfail due to a libcurl bug');
}
?>
--FILE--
Expand Down
5 changes: 3 additions & 2 deletions ext/curl/tests/bug71523.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes while curl_
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
if (curl_version()['version_number'] === 0x080a00) {
// https://github.com/php/php-src/issues/15997
die('xfail due to a libcurl bug');
}
?>
--FILE--
Expand Down
5 changes: 3 additions & 2 deletions ext/curl/tests/curl_basic_018.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ TestFest 2009 - AFUP - Thomas Rabaix <thomas.rabaix@gmail.com>
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
if (curl_version()['version_number'] === 0x080a00) {
// https://github.com/php/php-src/issues/15997
die('xfail due to a libcurl bug');
}
?>
--FILE--
Expand Down
5 changes: 3 additions & 2 deletions ext/curl/tests/curl_multi_getcontent_basic3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ Rein Velt (rein@velt.org)
curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
if (curl_version()['version_number'] === 0x080a00) {
// https://github.com/php/php-src/issues/15997
die('xfail due to a libcurl bug');
}
?>
--FILE--
Expand Down
Loading