Close DB at the end of DontRollEmptyLogs test
This commit is contained in:
parent
1803ed2ccb
commit
faf7691358
@ -57,6 +57,10 @@ class ColumnFamilyTest {
|
||||
DestroyDB(dbname_, Options(db_options_, column_family_options_));
|
||||
}
|
||||
|
||||
~ColumnFamilyTest() {
|
||||
delete env_;
|
||||
}
|
||||
|
||||
void Close() {
|
||||
for (auto h : handles_) {
|
||||
delete h;
|
||||
@ -931,6 +935,7 @@ TEST(ColumnFamilyTest, DontRollEmptyLogs) {
|
||||
int total_new_writable_files =
|
||||
env_->GetNumberOfNewWritableFileCalls() - num_writable_file_start;
|
||||
ASSERT_EQ(total_new_writable_files, handles_.size() + 1);
|
||||
Close();
|
||||
}
|
||||
|
||||
} // namespace rocksdb
|
||||
|
Loading…
x
Reference in New Issue
Block a user