summaryrefslogtreecommitdiff
path: root/tests/data/test2078
Commit message (Collapse)AuthorAgeFilesLines
* runtests: provide curl's version string as %VERSION for testsDaniel Stenberg2020-10-021-3/+1
| | | | | | | | ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
* tests/data: fix static ip:port instead of dynamic values being usedMarc Hoersken2020-03-101-1/+1
| | | | Closes #5065
* http_negotiate: improve handling of gss_init_sec_context() failuresKamil Dudka2019-08-011-0/+54
If HTTPAUTH_GSSNEGOTIATE was used for a POST request and gss_init_sec_context() failed, the POST request was sent with empty body. This commit also restores the original behavior of `curl --fail --negotiate`, which was changed by commit 6c6035532383e300c712e4c1cd9fdd749ed5cf59. Add regression tests 2077 and 2078 to cover this. Fixes #3992 Closes #4171