1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00
Files
archived-php-src/ext/curl/tests/curl_multi_setopt_basic001.phpt
Pierrick Charron 8456cef1db Fix ext/curl tests to work on every libcurl versions
Thanks Laruence :)
2012-12-26 00:43:37 -05:00

26 lines
545 B
PHP

--TEST--
curl_multi_setopt basic test
--SKIPIF--
<?php
if (!extension_loaded("curl")) {
exit("skip curl extension not loaded");
}
$curl_version = curl_version();
if ($curl_version['version_number'] < 0x071000) {
exit("skip: test works only with curl >= 7.16.0");
}
?>
--FILE--
<?php
$mh = curl_multi_init();
var_dump(curl_multi_setopt($mh, CURLMOPT_PIPELINING, 0));
var_dump(curl_multi_setopt($mh, -1, 0));
?>
--EXPECTF--
bool(true)
Warning: curl_multi_setopt(): Invalid curl multi configuration option in %s on line %d
bool(false)