summaryrefslogtreecommitdiff
path: root/tests/data/test1309
Commit message (Collapse)AuthorAgeFilesLines
* tests: Automatically deduce the tool name from the test case for unit testsSteve Holme2020-02-271-4/+0
| | | | | | | | | | | | It is still possible to override the executable to run during the test, using the <tool> tag, but this patch removes the requirement that the tag must be present for unit tests. It also removes the possibility of human error when existing test cases are used as the basis for new tests, as recently witnessed in 81c37124. Reviewed-by: Daniel Stenberg Closes #4976
* tests: added test for Curl_splaygetbest to unit1309Dániel Bakai2017-04-041-0/+111
| | | | | | | | This checks the new behavior of Curl_splaygetbest, so that the smallest node not larger than the key is removed, and FIFO behavior is kept even when there are multiple nodes with the same key. Closes #1358
* testsuite: more Windows line-endings fixesMarc Hoersken2014-02-151-1/+1
|
* tests: specify 'text' mode for some output files in verify sectionYang Tse2013-03-181-1/+1
|
* splay: add unit testsDaniel Stenberg2011-06-101-0/+1457
The test code that was #ifdef'ed in the code was converted into unit tests in test case 1309. I also removed the #if 0'ed code from splay.c