summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorleveldb Team <no-reply@google.com>2019-11-25 09:29:06 -0800
committerVictor Costan <pwnall@chromium.org>2019-12-02 11:44:39 -0800
commit583a42b5961dfd1804b5588a0ad2723becc8cc6a (patch)
tree2a66f85d144a29799430c43d2554d78be2b18a22 /db
parentdb8352187b2c2d037b6fe215b7f82415789ec71f (diff)
downloadleveldb-583a42b5961dfd1804b5588a0ad2723becc8cc6a.tar.gz
Internal change.
PiperOrigin-RevId: 282373286
Diffstat (limited to 'db')
-rw-r--r--db/autocompact_test.cc2
-rw-r--r--db/corruption_test.cc2
-rw-r--r--db/db_test.cc2
-rw-r--r--db/dbformat_test.cc2
-rw-r--r--db/fault_injection_test.cc2
-rw-r--r--db/filename_test.cc2
-rw-r--r--db/log_test.cc2
-rw-r--r--db/recovery_test.cc2
-rw-r--r--db/skiplist_test.cc2
-rw-r--r--db/version_edit_test.cc2
-rw-r--r--db/version_set_test.cc2
-rw-r--r--db/write_batch_test.cc2
12 files changed, 12 insertions, 12 deletions
diff --git a/db/autocompact_test.cc b/db/autocompact_test.cc
index d4caf71..9779c95 100644
--- a/db/autocompact_test.cc
+++ b/db/autocompact_test.cc
@@ -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"
diff --git a/db/corruption_test.cc b/db/corruption_test.cc
index 4d20946..b22f9e7 100644
--- a/db/corruption_test.cc
+++ b/db/corruption_test.cc
@@ -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"
diff --git a/db/db_test.cc b/db/db_test.cc
index e8e3495..1bd5afc 100644
--- a/db/db_test.cc
+++ b/db/db_test.cc
@@ -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"
diff --git a/db/dbformat_test.cc b/db/dbformat_test.cc
index ca49e0a..4a11c4a 100644
--- a/db/dbformat_test.cc
+++ b/db/dbformat_test.cc
@@ -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 {
diff --git a/db/fault_injection_test.cc b/db/fault_injection_test.cc
index 80b8f12..db8580c 100644
--- a/db/fault_injection_test.cc
+++ b/db/fault_injection_test.cc
@@ -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"
diff --git a/db/filename_test.cc b/db/filename_test.cc
index ad0bc73..f291d72 100644
--- a/db/filename_test.cc
+++ b/db/filename_test.cc
@@ -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"
diff --git a/db/log_test.cc b/db/log_test.cc
index 680f267..c765e93 100644
--- a/db/log_test.cc
+++ b/db/log_test.cc
@@ -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"
diff --git a/db/recovery_test.cc b/db/recovery_test.cc
index 0657743..cf6574e 100644
--- a/db/recovery_test.cc
+++ b/db/recovery_test.cc
@@ -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"
diff --git a/db/skiplist_test.cc b/db/skiplist_test.cc
index 04b9fa7..7c5d09b 100644
--- a/db/skiplist_test.cc
+++ b/db/skiplist_test.cc
@@ -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"
diff --git a/db/version_edit_test.cc b/db/version_edit_test.cc
index 228fa3b..39ea8b7 100644
--- a/db/version_edit_test.cc
+++ b/db/version_edit_test.cc
@@ -4,7 +4,7 @@
#include "db/version_edit.h"
-#include "third_party/googletest/googletest/include/gtest/gtest.h"
+#include "gtest/gtest.h"
namespace leveldb {
diff --git a/db/version_set_test.cc b/db/version_set_test.cc
index 71b19a7..dee6b4c 100644
--- a/db/version_set_test.cc
+++ b/db/version_set_test.cc
@@ -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"
diff --git a/db/write_batch_test.cc b/db/write_batch_test.cc
index b33993a..64df9b8 100644
--- a/db/write_batch_test.cc
+++ b/db/write_batch_test.cc
@@ -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"