1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-05 00:55:04 -05:00

test410: fix for windows

- Pass the very long request header via file instead of command line.

Prior to this change the 49k very long request header string was passed
via command line and on Windows that is too long so it was truncated and
the test would fail (specifically msys CI).

Closes https://github.com/curl/curl/pull/6516
This commit is contained in:
Jay Satiro 2021-01-25 01:06:35 -05:00
parent 2dcc940959
commit 782143ee81

View File

@ -32,8 +32,11 @@ https
HTTPS GET with very long request header
</name>
# 14 characters repeated 3500 times makes 49000 bytes
<file name="log/file410">
Long: %repeat[3500 x header content]%
</file>
<command>
-k https://%HOSTIP:%HTTPSPORT/410 -H "Long: %repeat[3500 x header content]%"
-k https://%HOSTIP:%HTTPSPORT/410 -H @log/file410
</command>
</client>