summaryrefslogtreecommitdiff
path: root/module_test/src/gtest_main.cpp
diff options
context:
space:
mode:
authorlijia <[email protected]>2024-05-11 17:56:37 +0800
committeryangwei <[email protected]>2024-05-17 14:10:21 +0800
commit0f7206776498b621de13255189cf1c659c04a701 (patch)
treef7d749e6f4c0796e164de4fea15e60e4b9b6f49a /module_test/src/gtest_main.cpp
parentb497224a3738a8c55768915288eafdeb97573d66 (diff)
TSG-20808,TSG-20954:split bm into multi-partition to avoid long latency by memset large memory;Both bm are queried in transition
Diffstat (limited to 'module_test/src/gtest_main.cpp')
-rw-r--r--module_test/src/gtest_main.cpp11
1 files changed, 11 insertions, 0 deletions
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:";