summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-05 23:27:48 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-05 23:27:48 +0200
commitb5048ca2997d373c7e9b8938d29c542b891ce970 (patch)
tree522d741636ebf206b06d0e38c09042eb6d96bcaf /tests
parent1f57645d9550e486a5bc209a0652bfad7fb8872a (diff)
downloadconts-b5048ca2997d373c7e9b8938d29c542b891ce970.tar.gz
conts-b5048ca2997d373c7e9b8938d29c542b891ce970.zip
remember to free nodes in sptree
Diffstat (limited to 'tests')
-rw-r--r--tests/htrie.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/htrie.c b/tests/htrie.c
deleted file mode 100644
index 2c70b38..0000000
--- a/tests/htrie.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <assert.h>
-
-#define HTRIE_TYPE int
-#define HTRIE_KEY int
-#define HTRIE_HASH conts_inthash
-#define HTRIE_CMP(a, b) ((a) - (b))
-#define HTRIE_NAME ints
-#include <conts/htrie.h>
-
-int main()
-{
- struct ints ints = ints_create();
- for (int i = 0; i < 1000000; ++i) {
- ints_insert(&ints, i, i);
- }
-
- for (int i = 0; i < 1000000; ++i) {
- int *v = ints_at(&ints, i);
- assert(v && *v == i);
- }
- ints_destroy(&ints);
-}