Merge branch 'PHP-8.3'

* PHP-8.3:
  Mark failing curl test on macOS x64 as xfail
This commit is contained in:
Christoph M. Becker 2024-09-23 13:36:36 +02:00
commit 5c1b945a16
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6
4 changed files with 24 additions and 0 deletions

View file

@ -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) Variation of bug #48203 with curl_multi_exec (Crash when file pointers passed to curl are closed before calling curl_multi_exec)
--EXTENSIONS-- --EXTENSIONS--
curl curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE-- --FILE--
<?php <?php
include 'server.inc'; include 'server.inc';

View file

@ -2,6 +2,12 @@
Bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes while curl_multi_exec) Bug #71523 (Copied handle with new option CURLOPT_HTTPHEADER crashes while curl_multi_exec)
--EXTENSIONS-- --EXTENSIONS--
curl curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE-- --FILE--
<?php <?php

View file

@ -4,6 +4,12 @@ Test curl_setopt() with curl_multi function with basic functionality
TestFest 2009 - AFUP - Thomas Rabaix <thomas.rabaix@gmail.com> TestFest 2009 - AFUP - Thomas Rabaix <thomas.rabaix@gmail.com>
--EXTENSIONS-- --EXTENSIONS--
curl curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE-- --FILE--
<?php <?php
include 'server.inc'; include 'server.inc';

View file

@ -5,6 +5,12 @@ Rein Velt (rein@velt.org)
#TestFest Utrecht 20090509 #TestFest Utrecht 20090509
--EXTENSIONS-- --EXTENSIONS--
curl curl
--SKIPIF--
<?php
if (getenv("GITHUB_ACTIONS") && PHP_OS_FAMILY === "Darwin" && php_uname("m") === "x86_64") {
die("xfail Test fails for unknown reasons");
}
?>
--FILE-- --FILE--
<?php <?php
//CURL_MULTI_GETCONTENT TEST //CURL_MULTI_GETCONTENT TEST