From bf44aeaf5cd7f03d3bd842c8046b7346c5035f06 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 14 Feb 2009 19:18:33 +0000 Subject: Remove dict, hash and rbtree from libparserutils svn path=/trunk/libparserutils/; revision=6512 --- test/hash.c | 56 -------------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 test/hash.c (limited to 'test/hash.c') diff --git a/test/hash.c b/test/hash.c deleted file mode 100644 index 8504cbd..0000000 --- a/test/hash.c +++ /dev/null @@ -1,56 +0,0 @@ -#include -#include -#include - -#include - -#include "testutils.h" - -extern void parserutils_hash_dump(parserutils_hash *hash); - -static void *myrealloc(void *ptr, size_t len, void *pw) -{ - UNUSED(pw); - - return realloc(ptr, len); -} - -int main(int argc, char **argv) -{ - parserutils_hash *hash; - uint8_t buf[256]; - - UNUSED(argc); - UNUSED(argv); - - /* Seed buffer with printable ascii */ - for (int i = 0; i < (int) sizeof(buf); i++) { - buf[i] = 97 + (int) (26.0 * (rand() / (RAND_MAX + 1.0))); - } - buf[sizeof(buf) - 1] = '\0'; - - assert(parserutils_hash_create(myrealloc, NULL, &hash) == - PARSERUTILS_OK); - - for (int i = 0; i < (int) sizeof(buf); i++) { - uint8_t *s = buf; - - while (s - buf <= i) { - const parserutils_hash_entry *e; - - parserutils_hash_insert(hash, - s, (size_t) (sizeof(buf) - i), &e); - - s++; - } - } - - parserutils_hash_dump(hash); - - parserutils_hash_destroy(hash); - - printf("PASS\n"); - - return 0; -} - -- cgit v1.2.3