aboutsummaryrefslogtreecommitdiff
path: root/icing/file/posting_list/flash-index-storage_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'icing/file/posting_list/flash-index-storage_test.cc')
-rw-r--r--icing/file/posting_list/flash-index-storage_test.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/icing/file/posting_list/flash-index-storage_test.cc b/icing/file/posting_list/flash-index-storage_test.cc
index 3e2d239..ef60037 100644
--- a/icing/file/posting_list/flash-index-storage_test.cc
+++ b/icing/file/posting_list/flash-index-storage_test.cc
@@ -249,7 +249,8 @@ TEST_F(FlashIndexStorageTest, FreeListInMemory) {
IsOkAndHolds(ElementsAreArray(hits2.rbegin(), hits2.rend())));
// 3. Now, free the first posting list. This should add it to the free list
- flash_index_storage.FreePostingList(std::move(posting_list_holder1));
+ ICING_ASSERT_OK(
+ flash_index_storage.FreePostingList(std::move(posting_list_holder1)));
// 4. Request another posting list. This should NOT grow the index because
// the first posting list is free.
@@ -349,7 +350,8 @@ TEST_F(FlashIndexStorageTest, FreeListNotInMemory) {
IsOkAndHolds(ElementsAreArray(hits2.rbegin(), hits2.rend())));
// 3. Now, free the first posting list. This should add it to the free list
- flash_index_storage.FreePostingList(std::move(posting_list_holder1));
+ ICING_ASSERT_OK(
+ flash_index_storage.FreePostingList(std::move(posting_list_holder1)));
// 4. Request another posting list. This should NOT grow the index because
// the first posting list is free.
@@ -452,7 +454,8 @@ TEST_F(FlashIndexStorageTest, FreeListInMemoryPersistence) {
// 3. Now, free the first posting list. This should add it to the free
// list
- flash_index_storage.FreePostingList(std::move(posting_list_holder1));
+ ICING_ASSERT_OK(
+ flash_index_storage.FreePostingList(std::move(posting_list_holder1)));
}
EXPECT_THAT(flash_index_storage.GetDiskUsage(),