Skip to content

Commit

Permalink
Internal change.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 282373286
  • Loading branch information
leveldb Team authored and pwnall committed Dec 2, 2019
1 parent db83521 commit 583a42b
Show file tree
Hide file tree
Showing 32 changed files with 32 additions and 33 deletions.
2 changes: 1 addition & 1 deletion db/autocompact_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "leveldb/cache.h"
#include "leveldb/db.h"
Expand Down
2 changes: 1 addition & 1 deletion db/corruption_test.cc
Expand Up @@ -4,7 +4,7 @@

#include <sys/types.h>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "db/filename.h"
#include "db/log_format.h"
Expand Down
2 changes: 1 addition & 1 deletion db/db_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <atomic>
#include <string>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "db/filename.h"
#include "db/version_set.h"
Expand Down
2 changes: 1 addition & 1 deletion db/dbformat_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "db/dbformat.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "util/logging.h"

namespace leveldb {
Expand Down
2 changes: 1 addition & 1 deletion db/fault_injection_test.cc
Expand Up @@ -9,7 +9,7 @@
#include <map>
#include <set>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "db/filename.h"
#include "db/log_format.h"
Expand Down
2 changes: 1 addition & 1 deletion db/filename_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "db/filename.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/dbformat.h"
#include "port/port.h"
#include "util/logging.h"
Expand Down
2 changes: 1 addition & 1 deletion db/log_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/log_reader.h"
#include "db/log_writer.h"
#include "leveldb/env.h"
Expand Down
2 changes: 1 addition & 1 deletion db/recovery_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "db/filename.h"
#include "db/version_set.h"
Expand Down
2 changes: 1 addition & 1 deletion db/skiplist_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <atomic>
#include <set>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/env.h"
#include "port/port.h"
#include "port/thread_annotations.h"
Expand Down
2 changes: 1 addition & 1 deletion db/version_edit_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "db/version_edit.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"

namespace leveldb {

Expand Down
2 changes: 1 addition & 1 deletion db/version_set_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "db/version_set.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "util/logging.h"
#include "util/testutil.h"

Expand Down
2 changes: 1 addition & 1 deletion db/write_batch_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/memtable.h"
#include "db/write_batch_internal.h"
#include "leveldb/db.h"
Expand Down
2 changes: 1 addition & 1 deletion helpers/memenv/memenv_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <string>
#include <vector>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/db_impl.h"
#include "leveldb/db.h"
#include "leveldb/env.h"
Expand Down
2 changes: 1 addition & 1 deletion issues/issue178_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <iostream>
#include <sstream>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/db.h"
#include "leveldb/write_batch.h"
#include "util/testutil.h"
Expand Down
2 changes: 1 addition & 1 deletion issues/issue200_test.cc
Expand Up @@ -6,7 +6,7 @@
// to forward, the current key can be yielded unexpectedly if a new
// mutation has been added just before the current key.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/db.h"
#include "util/testutil.h"

Expand Down
2 changes: 1 addition & 1 deletion issues/issue320_test.cc
Expand Up @@ -9,7 +9,7 @@
#include <string>
#include <vector>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/db.h"
#include "leveldb/write_batch.h"
#include "util/testutil.h"
Expand Down
2 changes: 1 addition & 1 deletion table/filter_block_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "table/filter_block.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/filter_policy.h"
#include "util/coding.h"
#include "util/hash.h"
Expand Down
2 changes: 1 addition & 1 deletion table/table_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <map>
#include <string>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "db/dbformat.h"
#include "db/memtable.h"
#include "db/write_batch_internal.h"
Expand Down
1 change: 0 additions & 1 deletion third_party/googletest
Submodule googletest deleted from c27ace
2 changes: 1 addition & 1 deletion util/arena_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "util/arena.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "util/random.h"

namespace leveldb {
Expand Down
2 changes: 1 addition & 1 deletion util/bloom_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/filter_policy.h"
#include "util/coding.h"
#include "util/logging.h"
Expand Down
2 changes: 1 addition & 1 deletion util/cache_test.cc
Expand Up @@ -6,7 +6,7 @@

#include <vector>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "util/coding.h"

namespace leveldb {
Expand Down
2 changes: 1 addition & 1 deletion util/coding_test.cc
Expand Up @@ -6,7 +6,7 @@

#include <vector>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"

namespace leveldb {

Expand Down
2 changes: 1 addition & 1 deletion util/crc32c_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "util/crc32c.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"

namespace leveldb {
namespace crc32c {
Expand Down
2 changes: 1 addition & 1 deletion util/env_posix_test.cc
Expand Up @@ -13,7 +13,7 @@
#include <unordered_set>
#include <vector>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/env.h"
#include "port/port.h"
#include "util/env_posix_test_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion util/env_test.cc
Expand Up @@ -6,7 +6,7 @@

#include <algorithm>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "port/port.h"
#include "port/thread_annotations.h"
#include "util/mutexlock.h"
Expand Down
2 changes: 1 addition & 1 deletion util/env_windows_test.cc
Expand Up @@ -2,7 +2,7 @@
// 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.

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/env.h"
#include "port/port.h"
#include "util/env_windows_test_helper.h"
Expand Down
2 changes: 1 addition & 1 deletion util/hash_test.cc
Expand Up @@ -4,7 +4,7 @@

#include "util/hash.h"

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"

namespace leveldb {

Expand Down
2 changes: 1 addition & 1 deletion util/logging_test.cc
Expand Up @@ -7,7 +7,7 @@
#include <limits>
#include <string>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/slice.h"

namespace leveldb {
Expand Down
2 changes: 1 addition & 1 deletion util/no_destructor_test.cc
Expand Up @@ -8,7 +8,7 @@
#include <cstdlib>
#include <utility>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"

namespace leveldb {

Expand Down
2 changes: 1 addition & 1 deletion util/status_test.cc
Expand Up @@ -6,7 +6,7 @@

#include <utility>

#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gtest/gtest.h"
#include "leveldb/slice.h"

namespace leveldb {
Expand Down
4 changes: 2 additions & 2 deletions util/testutil.h
Expand Up @@ -5,8 +5,8 @@
#ifndef STORAGE_LEVELDB_UTIL_TESTUTIL_H_
#define STORAGE_LEVELDB_UTIL_TESTUTIL_H_

#include "third_party/googletest/googlemock/include/gmock/gmock.h"
#include "third_party/googletest/googletest/include/gtest/gtest.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "helpers/memenv/memenv.h"
#include "leveldb/env.h"
#include "leveldb/slice.h"
Expand Down

0 comments on commit 583a42b

Please sign in to comment.