diff --git a/Makefile b/Makefile index 876d056e4..798580df8 100644 --- a/Makefile +++ b/Makefile @@ -647,6 +647,10 @@ ifdef ASSERT_STATUS_CHECKED merge_helper_test \ memtable_list_test \ flush_job_test \ + block_based_filter_block_test \ + block_fetcher_test \ + full_filter_block_test \ + partitioned_filter_block_test \ ifeq ($(USE_FOLLY_DISTRIBUTED_MUTEX),1) TESTS_PASSING_ASC += folly_synchronization_distributed_mutex_test diff --git a/table/block_fetcher_test.cc b/table/block_fetcher_test.cc index f8cbad6d0..0786730af 100644 --- a/table/block_fetcher_test.cc +++ b/table/block_fetcher_test.cc @@ -295,8 +295,9 @@ class BlockFetcherTest : public testing::Test { uint64_t file_size = 0; ASSERT_OK(env_->GetFileSize(file->file_name(), &file_size)); IOOptions opts; - ReadFooterFromFile(opts, file, nullptr /* prefetch_buffer */, file_size, - footer, kBlockBasedTableMagicNumber); + ASSERT_OK(ReadFooterFromFile(opts, file, nullptr /* prefetch_buffer */, + file_size, footer, + kBlockBasedTableMagicNumber)); } // NOTE: compression_type returns the compression type of the fetched block