Преглед на файлове

Simplify issue320_test.

Use std::unique_ptr to simplify issue320_test.

PiperOrigin-RevId: 243190799
main
Chris Mumford преди 5 години
родител
ревизия
08e771901f
променени са 1 файла, в които са добавени 3 реда и са изтрити 10 реда
  1. +3
    -10
      issues/issue320_test.cc

+ 3
- 10
issues/issue320_test.cc Целия файл

@ -45,7 +45,8 @@ TEST(Issue320, Test) {
bool delete_before_put = false;
bool keep_snapshots = true;
std::vector<std::pair<std::string, std::string>*> test_map(10000, nullptr);
std::vector<std::unique_ptr<std::pair<std::string, std::string>>> test_map(
10000);
std::vector<Snapshot const*> snapshots(100, nullptr);
DB* db;
@ -73,7 +74,7 @@ TEST(Issue320, Test) {
if (test_map[index] == nullptr) {
num_items++;
test_map[index] = new std::pair<std::string, std::string>(
test_map[index] = std::make_unique<std::pair<std::string, std::string>>(
CreateRandomString(index), CreateRandomString(index));
batch.Put(test_map[index]->first, test_map[index]->second);
} else {
@ -90,7 +91,6 @@ TEST(Issue320, Test) {
if (num_items >= target_size && GenerateRandomNumber(100) > 30) {
batch.Delete(test_map[index]->first);
delete test_map[index];
test_map[index] = nullptr;
--num_items;
} else {
@ -117,13 +117,6 @@ TEST(Issue320, Test) {
}
}
for (size_t i = 0; i < test_map.size(); ++i) {
if (test_map[i] != nullptr) {
delete test_map[i];
test_map[i] = nullptr;
}
}
delete db;
DestroyDB(dbpath, options);
}

Зареждане…
Отказ
Запис