test269: disable for hyper

--ignore-content-length / CURLOPT_IGNORE_CONTENT_LENGTH doesn't work
with hyper.

Closes #7184
This commit is contained in:
Daniel Stenberg 2021-06-03 17:56:36 +02:00
parent b193fd3bbd
commit 628ebd82b9
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 19 additions and 2 deletions

View file

@ -2370,8 +2370,12 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
break;
case CURLOPT_IGNORE_CONTENT_LENGTH:
#ifndef USE_HYPER
data->set.ignorecl = (0 != va_arg(param, long)) ? TRUE : FALSE;
break;
#else
return CURLE_NOT_BUILT_IN;
#endif
case CURLOPT_CONNECT_ONLY:
/*