summaryrefslogtreecommitdiffstats
path: root/tests/utils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* use https://www.gnu.org instead of http://www.gnu.orgDaniel Kahn Gillmor2018-08-292-2/+2
| | | | www.gnu.org has offered https for years now.
* tests: replace ok(ret == KNOT_E???) with is_int(KNOT_E???, ret) to ease ↵Petr Špaček2017-01-301-5/+5
| | | | | | | | | | | | | debugging Throwing away unexpected retun codes makes debugging harder. TAP function is_int can nicely log mismatches which makes debugging easier. To make our lives easier I replaced all ok(ret == KNOT_E???) checks with is_int() calls. It was done using following command + manual review and reverts in libknot/test_control.c. $ find -name '*.c' | xargs sed -i 's#ok(ret == \(KNOT_E[0-9A-Z_]\+\),#is_int(\1, ret,#'
* hat-trie: remove hattrie_build_index as qp-trie doesn't need itDaniel Salzman2016-10-171-2/+0
|
* utils: add cert_get_pin() functionJan Vcelak2016-08-031-0/+223
|
* utils: add general lookup containerDaniel Salzman2016-04-131-0/+138