diff options
| author | lijia <[email protected]> | 2024-05-11 17:56:37 +0800 |
|---|---|---|
| committer | yangwei <[email protected]> | 2024-05-17 14:10:21 +0800 |
| commit | 0f7206776498b621de13255189cf1c659c04a701 (patch) | |
| tree | f7d749e6f4c0796e164de4fea15e60e4b9b6f49a /module_test/src/gtest_main.cpp | |
| parent | b497224a3738a8c55768915288eafdeb97573d66 (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.cpp | 11 |
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:"; |
