mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Mark failing curl test on macOS x64 as xfail
This commit is contained in:
commit
5c1b945a16
4 changed files with 24 additions and 0 deletions
|
@ -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';
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue