]> granicus.if.org Git - php/commitdiff
Make bug52820.phpt more robust
authorNikita Popov <nikita.ppv@gmail.com>
Wed, 18 Mar 2020 09:25:38 +0000 (10:25 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Wed, 18 Mar 2020 10:46:27 +0000 (11:46 +0100)
Use a more robust error condition...

ext/standard/tests/file/bug52820.phpt

index e51c27e457218313b9e5cf7070bb8ae9c73c42a0..cdf4db3e5ab3e83799d6ba058c12c2ef77964014 100644 (file)
@@ -7,7 +7,7 @@ if (!function_exists('zend_leak_variable'))
 /* unfortunately no standard function does a cast to FILE*, so we need
  * curl to test this */
 if (!extension_loaded("curl")) exit("skip curl extension not loaded");
-$handle=curl_init('http://127.0.0.1:37349/');
+$handle=curl_init('file:///i_dont_exist/');
 curl_setopt($handle, CURLOPT_VERBOSE, true);
 curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
 if (!curl_setopt($handle, CURLOPT_STDERR, fopen("php://memory", "w+")))
@@ -15,7 +15,7 @@ if (!curl_setopt($handle, CURLOPT_STDERR, fopen("php://memory", "w+")))
 --FILE--
 <?php
 function do_stuff($url) {
-    $handle=curl_init('http://127.0.0.1:37349/');
+    $handle=curl_init('file:///i_dont_exist/');
     curl_setopt($handle, CURLOPT_VERBOSE, true);
     curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
     curl_setopt($handle, CURLOPT_STDERR, $o = fopen($url, "w+"));
@@ -42,22 +42,22 @@ echo "\nDone.\n";
 --EXPECTF--
 temp stream (close after):
 About to rewind!
-* %ATrying 127.0.0.1...%AConnection refused%A
+* Couldn't open file /i_dont_exist/
 * Closing connection%A%d
 
 memory stream (close after):
 About to rewind!
-* %ATrying 127.0.0.1...%AConnection refused%A
+* Couldn't open file /i_dont_exist/
 * Closing connection%A%d
 
 temp stream (leak):
 About to rewind!
-* %ATrying 127.0.0.1...%AConnection refused%A
+* Couldn't open file /i_dont_exist/
 * Closing connection%A%d
 
 memory stream (leak):
 About to rewind!
-* %ATrying 127.0.0.1...%AConnection refused%A
+* Couldn't open file /i_dont_exist/
 * Closing connection%A%d
 
 Done.