summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-09-14 05:35:59 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-09-14 05:35:59 +0000
commit2620c79810d4741922e9fa89050c0af564994f24 (patch)
tree153342e638fc52dae7800c9de65ab4576cf52b26 /src
parentb15c73341d7a7abff7a04e1de18de59ba0f34009 (diff)
downloadgtest-2620c79810d4741922e9fa89050c0af564994f24.tar.gz
gtest-2620c79810d4741922e9fa89050c0af564994f24.tar.bz2
gtest-2620c79810d4741922e9fa89050c0af564994f24.tar.xz
Include gtest headers as user headers instead of system headers.
git-svn-id: http://googletest.googlecode.com/svn/trunk@482 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'src')
-rw-r--r--src/gtest-all.cc2
-rw-r--r--src/gtest-death-test.cc8
-rw-r--r--src/gtest-filepath.cc6
-rw-r--r--src/gtest-internal-inl.h6
-rw-r--r--src/gtest-port.cc8
-rw-r--r--src/gtest-printers.cc4
-rw-r--r--src/gtest-test-part.cc2
-rw-r--r--src/gtest-typed-test.cc4
-rw-r--r--src/gtest.cc4
-rw-r--r--src/gtest_main.cc2
10 files changed, 23 insertions, 23 deletions
diff --git a/src/gtest-all.cc b/src/gtest-all.cc
index f3e22dd..0a9cee5 100644
--- a/src/gtest-all.cc
+++ b/src/gtest-all.cc
@@ -36,7 +36,7 @@
// This line ensures that gtest.h can be compiled on its own, even
// when it's fused.
-#include <gtest/gtest.h>
+#include "gtest/gtest.h"
// The following lines pull in the real gtest *.cc files.
#include "src/gtest.cc"
diff --git a/src/gtest-death-test.cc b/src/gtest-death-test.cc
index 66bf189..ffd9f3a 100644
--- a/src/gtest-death-test.cc
+++ b/src/gtest-death-test.cc
@@ -31,8 +31,8 @@
//
// This file implements death tests.
-#include <gtest/gtest-death-test.h>
-#include <gtest/internal/gtest-port.h>
+#include "gtest/gtest-death-test.h"
+#include "gtest/internal/gtest-port.h"
#if GTEST_HAS_DEATH_TEST
@@ -54,8 +54,8 @@
#endif // GTEST_HAS_DEATH_TEST
-#include <gtest/gtest-message.h>
-#include <gtest/internal/gtest-string.h>
+#include "gtest/gtest-message.h"
+#include "gtest/internal/gtest-string.h"
// Indicates that this translation unit is part of Google Test's
// implementation. It must come before gtest-internal-inl.h is
diff --git a/src/gtest-filepath.cc b/src/gtest-filepath.cc
index c1ef918..96557f3 100644
--- a/src/gtest-filepath.cc
+++ b/src/gtest-filepath.cc
@@ -29,8 +29,8 @@
//
// Authors: keith.ray@gmail.com (Keith Ray)
-#include <gtest/internal/gtest-filepath.h>
-#include <gtest/internal/gtest-port.h>
+#include "gtest/internal/gtest-filepath.h"
+#include "gtest/internal/gtest-port.h"
#include <stdlib.h>
@@ -57,7 +57,7 @@
#define GTEST_PATH_MAX_ _POSIX_PATH_MAX
#endif // GTEST_OS_WINDOWS
-#include <gtest/internal/gtest-string.h>
+#include "gtest/internal/gtest-string.h"
namespace testing {
namespace internal {
diff --git a/src/gtest-internal-inl.h b/src/gtest-internal-inl.h
index fe53c21..e0f4af5 100644
--- a/src/gtest-internal-inl.h
+++ b/src/gtest-internal-inl.h
@@ -56,14 +56,14 @@
#include <string>
#include <vector>
-#include <gtest/internal/gtest-port.h>
+#include "gtest/internal/gtest-port.h"
#if GTEST_OS_WINDOWS
#include <windows.h> // For DWORD.
#endif // GTEST_OS_WINDOWS
-#include <gtest/gtest.h> // NOLINT
-#include <gtest/gtest-spi.h>
+#include "gtest/gtest.h" // NOLINT
+#include "gtest/gtest-spi.h"
namespace testing {
diff --git a/src/gtest-port.cc b/src/gtest-port.cc
index 8a7005f..ae0c663 100644
--- a/src/gtest-port.cc
+++ b/src/gtest-port.cc
@@ -29,7 +29,7 @@
//
// Author: wan@google.com (Zhanyong Wan)
-#include <gtest/internal/gtest-port.h>
+#include "gtest/internal/gtest-port.h"
#include <limits.h>
#include <stdlib.h>
@@ -51,9 +51,9 @@
#include <mach/vm_map.h>
#endif // GTEST_OS_MAC
-#include <gtest/gtest-spi.h>
-#include <gtest/gtest-message.h>
-#include <gtest/internal/gtest-string.h>
+#include "gtest/gtest-spi.h"
+#include "gtest/gtest-message.h"
+#include "gtest/internal/gtest-string.h"
// Indicates that this translation unit is part of Google Test's
// implementation. It must come before gtest-internal-inl.h is
diff --git a/src/gtest-printers.cc b/src/gtest-printers.cc
index 07a0d85..147f8b2 100644
--- a/src/gtest-printers.cc
+++ b/src/gtest-printers.cc
@@ -42,12 +42,12 @@
// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that
// defines Foo.
-#include <gtest/gtest-printers.h>
+#include "gtest/gtest-printers.h"
#include <ctype.h>
#include <stdio.h>
#include <ostream> // NOLINT
#include <string>
-#include <gtest/internal/gtest-port.h>
+#include "gtest/internal/gtest-port.h"
namespace testing {
diff --git a/src/gtest-test-part.cc b/src/gtest-test-part.cc
index 5d183a4..5ddc67c 100644
--- a/src/gtest-test-part.cc
+++ b/src/gtest-test-part.cc
@@ -31,7 +31,7 @@
//
// The Google C++ Testing Framework (Google Test)
-#include <gtest/gtest-test-part.h>
+#include "gtest/gtest-test-part.h"
// Indicates that this translation unit is part of Google Test's
// implementation. It must come before gtest-internal-inl.h is
diff --git a/src/gtest-typed-test.cc b/src/gtest-typed-test.cc
index f70043e..a5cc88f 100644
--- a/src/gtest-typed-test.cc
+++ b/src/gtest-typed-test.cc
@@ -29,8 +29,8 @@
//
// Author: wan@google.com (Zhanyong Wan)
-#include <gtest/gtest-typed-test.h>
-#include <gtest/gtest.h>
+#include "gtest/gtest-typed-test.h"
+#include "gtest/gtest.h"
namespace testing {
namespace internal {
diff --git a/src/gtest.cc b/src/gtest.cc
index 4f0446d..34e56d7 100644
--- a/src/gtest.cc
+++ b/src/gtest.cc
@@ -31,8 +31,8 @@
//
// The Google C++ Testing Framework (Google Test)
-#include <gtest/gtest.h>
-#include <gtest/gtest-spi.h>
+#include "gtest/gtest.h"
+#include "gtest/gtest-spi.h"
#include <ctype.h>
#include <math.h>
diff --git a/src/gtest_main.cc b/src/gtest_main.cc
index 6d4d22d..a09bbe0 100644
--- a/src/gtest_main.cc
+++ b/src/gtest_main.cc
@@ -29,7 +29,7 @@
#include <iostream>
-#include <gtest/gtest.h>
+#include "gtest/gtest.h"
GTEST_API_ int main(int argc, char **argv) {
std::cout << "Running main() from gtest_main.cc\n";