diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-09-23 17:11:22 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-10-02 07:50:32 +0200 |
commit | e59371a4936f8e7e2187b09a08d34d9a4c278657 (patch) | |
tree | 42dd007c9b136a2282605373a06f23409a3b6941 /tests | |
parent | c124e6b3c04bfd254e24312bc66c2bc9db919442 (diff) | |
download | curl-e59371a4936f8e7e2187b09a08d34d9a4c278657.tar.gz |
curl: create easy handles on-demand and not ahead of time
This should again enable crazy-large download ranges of the style
[1-10000000] that otherwise easily ran out of memory starting in 7.66.0
when this new handle allocating scheme was introduced.
Reported-by: Peter Sumatra
Fixes #4393
Closes #4438
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/test62 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/test62 b/tests/data/test62 index 2784a0f61..82bc0d783 100644 --- a/tests/data/test62 +++ b/tests/data/test62 @@ -29,7 +29,7 @@ http HTTP, send cookies when using custom Host: </name> <command> -http://%HOSTIP:%HTTPPORT/we/want/62 http://%HOSTIP:%HTTPPORT/we/want?hoge=fuga -b log/jar62.txt -H "Host: www.host.foo.com" +http://%HOSTIP:%HTTPPORT/we/want/62 http://%HOSTIP:%HTTPPORT/we/want/62?hoge=fuga -b log/jar62.txt -H "Host: www.host.foo.com" </command> <file name="log/jar62.txt"> # Netscape HTTP Cookie File @@ -55,7 +55,7 @@ Host: www.host.foo.com Accept: */*
Cookie: test2=yes; test=yes
-GET /we/want?hoge=fuga HTTP/1.1
+GET /we/want/62?hoge=fuga HTTP/1.1
Host: www.host.foo.com
Accept: */*
Cookie: test2=yes; test=yes
|