Skip to content

Commit

Permalink
Destroy iniital db dir for a test in DBWALTest (#10221)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: facebook/rocksdb#10221

Reviewed By: hx235

Differential Revision: D37316280

Pulled By: riversand963

fbshipit-source-id: 062781acec2f36beebc62003bcc8ec280488d572
  • Loading branch information
riversand963 authored and facebook-github-bot committed Jun 21, 2022
1 parent 3afed74 commit b012d23
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions db/db_wal_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1497,6 +1497,8 @@ TEST_F(DBWALTest, RaceInstallFlushResultsWithWalObsoletion) {
// The following make sure there are two bg flush threads.
options.max_background_jobs = 8;

DestroyAndReopen(options);

const std::string cf1_name("cf1");
CreateAndReopenWithCF({cf1_name}, options);
assert(handles_.size() == 2);
Expand All @@ -1512,10 +1514,13 @@ TEST_F(DBWALTest, RaceInstallFlushResultsWithWalObsoletion) {
ASSERT_OK(db_->Put(WriteOptions(), handles_[1], "foo", "value"));
ASSERT_OK(db_->Put(WriteOptions(), "foo", "value"));

ASSERT_OK(dbfull()->TEST_FlushMemTable(false, true, handles_[1]));
ASSERT_OK(dbfull()->TEST_FlushMemTable(
/*wait=*/false, /*allow_write_stall=*/true, handles_[1]));

ASSERT_OK(db_->Put(WriteOptions(), "foo", "value"));
ASSERT_OK(dbfull()->TEST_FlushMemTable(false, true, handles_[0]));

ASSERT_OK(dbfull()->TEST_FlushMemTable(
/*wait=*/false, /*allow_write_stall=*/true, handles_[0]));

bool called = false;
SyncPoint::GetInstance()->DisableProcessing();
Expand Down

0 comments on commit b012d23

Please sign in to comment.