summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 16:04:58 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 16:04:58 +0200
commit56edd66ae3e8661d40d499bd7c72f3ffc7aac4e7 (patch)
treed2a99da089e9ec6c7e611c64376dae8a05d524a1 /tests
parent2d186619c6aefac9d006a360a508f94dfe1c331c (diff)
downloadconts-56edd66ae3e8661d40d499bd7c72f3ffc7aac4e7.tar.gz
conts-56edd66ae3e8661d40d499bd7c72f3ffc7aac4e7.zip
fix map iteration
Diffstat (limited to 'tests')
-rw-r--r--tests/map.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/map.c b/tests/map.c
index 08f831e..6c42787 100644
--- a/tests/map.c
+++ b/tests/map.c
@@ -23,10 +23,14 @@ int main()
assert(v && *v == i);
}
+ size_t count = 0;
foreach(ints, iter, &ints) {
assert(iter->key == iter->data);
+ count++;
}
+ assert(count == 1000000);
+
for (int i = 0; i < 1000000; ++i) {
ints_remove(&ints, i);
}