Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fix GH-13688: Test curl_basic_008 can fail (#13693)
This commit is contained in:
Niels Dossche 2024-07-04 18:09:09 +02:00
commit 9e476775e2
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5

View file

@ -6,7 +6,7 @@ TestFest 2009 - AFUP - Perrick Penet <perrick@noparking.net>
curl
--SKIPIF--
<?php
$addr = "www.".uniqid().".".uniqid();
$addr = "www.".uniqid().".invalid";
if (gethostbyname($addr) != $addr) {
print "skip catch all dns";
}
@ -14,7 +14,7 @@ curl
--FILE--
<?php
$url = "http://www.".uniqid().".".uniqid();
$url = "http://www.".uniqid().".invalid";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);