From 11de3decc9357714498f96e13f1c1c2da1046811 Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Tue, 6 Oct 2015 14:56:33 +0200 Subject: test: hashmap - increase number of entries for crippled hash test The purpose of testing with the crippled hash function is to cover the otherwise very unlikely codepath in bucket_calculate_dib() where it has to fall back to recomputing the hash value. This unlikely path was not covered by test-hashmap anymore after 57217c8f "test: hashmap - cripple the hash function by truncating the input rather than the output". Restore the test coverage by increasing the number of entries in the test. The number was determined empirically by checking with lcov. --- src/test/test-hashmap-plain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/test-hashmap-plain.c') diff --git a/src/test/test-hashmap-plain.c b/src/test/test-hashmap-plain.c index 78f9c19f5b..c691f577c6 100644 --- a/src/test/test-hashmap-plain.c +++ b/src/test/test-hashmap-plain.c @@ -710,7 +710,7 @@ static void test_hashmap_many(void) { unsigned n_entries; } tests[] = { { .ops = NULL, .n_entries = 1 << 20 }, - { .ops = &crippled_hashmap_ops, .n_entries = 1 << 11 }, + { .ops = &crippled_hashmap_ops, .n_entries = 1 << 14 }, }; -- cgit v1.2.3-54-g00ecf