Skip to content

Commit

Permalink
Merge branch 'PHP-8.3'
Browse files Browse the repository at this point in the history
* PHP-8.3:
  ext/curl: mark certain tests as xfail on curl 8.10.0
  • Loading branch information
cmb69 committed Sep 23, 2024
2 parents b2eff1f + 8b35b06 commit 5dd8bb0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
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

0 comments on commit 5dd8bb0

Please sign in to comment.