add proxy_ssl request options
[m6w6/ext-http] / tests / bug66388.phpt
index 77d50c7349384823b71ed5f7272a343a2ca1cdd6..df53d9c0c0d40570bc6ddcb0ab20ced21d73580e 100644 (file)
@@ -3,6 +3,7 @@ Bug #66388 (Crash on POST with Content-Length:0 and untouched body)
 --SKIPIF--
 <?php
 include "skipif.inc";
+skip_client_test();
 skip_online_test();
 ?>
 --FILE--
@@ -24,6 +25,7 @@ server("proxy.inc", function($port) {
                        'Content-Length' => 0
                )
        );
+       $client->setOptions(["timeout" => 30]);
        $client->enqueue($request);
        echo $client->send()->getResponse()->getResponseCode();
 });