// Copyright (c) 2013 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. // Test for issue 178: a manual compaction causes deleted data to reappear. #include <cstdlib> #include <iostream> #include <sstream> #include "gtest/gtest.h" #include "leveldb/db.h" #include "leveldb/write_batch.h" #include "util/testutil.h" namespace { const int kNumKeys = …; std::string Key1(int i) { … } std::string Key2(int i) { … } TEST(Issue178, Test) { … } } // anonymous namespace