diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-27 16:17:32 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-27 16:35:04 +0200 |
commit | 5940254d9363ed8de9ba79a65cb074ec5aa4e69f (patch) | |
tree | b217218914aff187ea3ee056a0ab46d1963cc9b2 /tests | |
download | conts-5940254d9363ed8de9ba79a65cb074ec5aa4e69f.tar.gz conts-5940254d9363ed8de9ba79a65cb074ec5aa4e69f.zip |
initial containers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/htrie.c | 22 | ||||
-rw-r--r-- | tests/vec.c | 19 |
2 files changed, 41 insertions, 0 deletions
diff --git a/tests/htrie.c b/tests/htrie.c new file mode 100644 index 0000000..2c70b38 --- /dev/null +++ b/tests/htrie.c @@ -0,0 +1,22 @@ +#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); +} diff --git a/tests/vec.c b/tests/vec.c new file mode 100644 index 0000000..4bc06e7 --- /dev/null +++ b/tests/vec.c @@ -0,0 +1,19 @@ +#include <assert.h> + +#define VEC_TYPE int +#define VEC_NAME ints +#include <conts/vec.h> + +int main() +{ + struct ints ints = ints_create(0); + for (int i = 0; i < 1000000; ++i) { + ints_append(&ints, i); + } + + for (int i = 0; i < 1000000; ++i) { + int *v = ints_at(&ints, i); + assert(v && *v == i); + } + ints_destroy(&ints); +} |