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
4 changes: 3 additions & 1 deletion ext/curl/tests/bug77535.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Bug #77535 (Invalid callback, h2 server push)
--EXTENSIONS--
curl
--XLEAK--
--SKIPIF--
<?php
include 'skipif-nocaddy.inc';
Expand All @@ -11,6 +10,9 @@ $curl_version = curl_version();
if ($curl_version['version_number'] < 0x080100) {
exit("skip: test may crash with curl < 8.1.0");
}
if ($curl_version['version_number'] === 0x080a00) {
exit("skip: test may crash with curl 8.10.0");
}
?>
--FILE--
<?php
Expand Down
4 changes: 3 additions & 1 deletion ext/curl/tests/curl_pushfunction_trampoline.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test trampoline for curl option CURLMOPT_PUSHFUNCTION
--EXTENSIONS--
curl
--XLEAK--
--SKIPIF--
<?php
include 'skipif-nocaddy.inc';
Expand All @@ -11,6 +10,9 @@ $curl_version = curl_version();
if ($curl_version['version_number'] < 0x080100) {
exit("skip: test may crash with curl < 8.1.0");
}
if ($curl_version['version_number'] === 0x080a00) {
exit("skip: test may crash with curl 8.10.0");
}
?>
--FILE--
<?php
Expand Down
Loading