summaryrefslogtreecommitdiff
path: root/tests/data/test1402
Commit message (Collapse)AuthorAgeFilesLines
* tests: removed some redundant empty <stdout> sectionsDan Fandrich2017-05-281-2/+0
|
* curl: set a 100K buffer size by defaultDaniel Stenberg2017-04-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | Test command 'time curl http://localhost/80GB -so /dev/null' on a Debian Linux. Before (middle performing run out 9): real 0m28.078s user 0m11.240s sys 0m12.876s After (middle performing run out 9) real 0m26.356s (93.9%) user 0m5.324s (47.4%) sys 0m8.368s (65.0%) Also, doing SFTP over a 200 millsecond latency link is now about 6 times faster. Closes #1446
* tests: clear the SSL_CERT_FILE variable on --libcurl testsDan Fandrich2017-03-121-0/+3
| | | | | Otherwise, the contents will end up in the output and fail the verification.
* test14xx: fixed --libcurl output tests again after 8e8afa82cbbDaniel Stenberg2016-10-181-0/+1
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* curl: use 2TLS by defaultDaniel Stenberg2015-12-131-2/+3
| | | | | | | | | Make this the default for the curl tool (if built with HTTP/2 powers enabled) unless a specific HTTP version is requested on the command line. This should allow more users to get HTTP/2 powers without having to change anything.
* Made -D option work with -O and -J.Tatsuhiro Tsujikawa2012-05-251-0/+2
| | | | | | | | | | | | | | To achieve this, first new structure HeaderData is defined to hold necessary data to perform header-related work. Then tool_header_cb now receives HeaderData pointer as userdata. All header-related work (currently, dumping header and Content-Disposition inspection) are done in this callback function. HeaderData.outs->config is used to determine whether each work is done. Unit tests were also updated because after this change, curl code always sets CURLOPT_HEADERFUNCTION and CURLOPT_HEADERDATA. Tested with -O -J -D, -O -J -i and -O -J -D -i and all worked fine.
* tests 140X: fix --libcurl generated source file reading mode for MSYS buildsYang Tse2012-03-181-1/+1
|
* test: --libcurl fixesDaniel Stenberg2012-02-231-8/+10
| | | | | | | | The line endings broke when I saved the three recent patches (my fault, not Colin's) to 'git am' them. Adjusted the stripping of the test program for comparing to also exclude the SSH key file name as that will differ and use a local path name.
* Add tests for curl's --libcurl output.Colin Hogben2012-02-231-0/+108
These tests check the output of the --libcurl option of curl, including the improved option handling added in a related patch.