From 0f7206776498b621de13255189cf1c659c04a701 Mon Sep 17 00:00:00 2001 From: lijia Date: Sat, 11 May 2024 17:56:37 +0800 Subject: TSG-20808,TSG-20954:split bm into multi-partition to avoid long latency by memset large memory;Both bm are queried in transition --- module_test/src/gtest_main.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'module_test/src/gtest_main.cpp') diff --git a/module_test/src/gtest_main.cpp b/module_test/src/gtest_main.cpp index 913e1ef..6c0e475 100644 --- a/module_test/src/gtest_main.cpp +++ b/module_test/src/gtest_main.cpp @@ -2211,6 +2211,17 @@ TEST(performance, simple) #endif +#include "sapp_global_val.h" + +TEST(dabloom, simple) +{ + ASSERT_EQ(0, sapp_bloom_filter_test_run(BLOOM_LIBRARY_DABLOOM)); +} + +TEST(apbloom, simple) +{ + ASSERT_EQ(0, sapp_bloom_filter_test_run(BLOOM_LIBRARY_APBLOOM)); +} static const char *gtest_cla_short_options = "hvLsf:l:"; -- cgit v1.2.3