summaryrefslogtreecommitdiff
path: root/test/bloom.c
Commit message (Collapse)AuthorAgeFilesLines
* add bloom filter test for adding NULL stringVincent Sanders2016-08-141-35/+76
|
* Fix warnings in unit testsVincent Sanders2016-08-081-1/+1
|
* Complete hash table tests and clean up ineterface.Vincent Sanders2015-07-121-0/+7
|
* Extend bloom filter test to check item count is correctVincent Sanders2015-07-101-0/+4
|
* Add unit test for bloom filterVincent Sanders2015-07-101-0/+195
Adds check based unit test for teh bloom filter implementation. This is based on Roberts original test code in utils/bloom.c and uses /usr/share/dict as a source of strings to check bloom creation, no false negatives and the false positive rate is below 15%.