summaryrefslogtreecommitdiff
path: root/tests/test-bitset.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-bitset.c')
-rw-r--r--tests/test-bitset.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-bitset.c b/tests/test-bitset.c
index 9a2d7c5216..6fa656a227 100644
--- a/tests/test-bitset.c
+++ b/tests/test-bitset.c
@@ -358,6 +358,8 @@ check_attributes (enum bitset_attr attr, int nbits)
int main (void)
{
+ bitset_stats_enable ();
+
for (int i = 0; i < 4; ++i)
{
/* table bitsets have elements that store 256 bits. bitset_list
@@ -382,5 +384,7 @@ int main (void)
compare (BITSET_VARIABLE, BITSET_SPARSE);
compare (BITSET_VARIABLE, BITSET_FRUGAL);
compare (BITSET_VARIABLE, BITSET_GREEDY);
+
+ bitset_stats_dump (stderr);
return 0;
}