diff options
| author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-09-14 05:35:59 +0000 | 
|---|---|---|
| committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-09-14 05:35:59 +0000 | 
| commit | dac3e879c56a50696a36f53e1e5e353e48fa665f (patch) | |
| tree | 153342e638fc52dae7800c9de65ab4576cf52b26 /src | |
| parent | 88e0df62470fa82e8d3010ef88241cd7565ebe9e (diff) | |
| download | googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.tar.gz googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.tar.bz2 googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.zip | |
Include gtest headers as user headers instead of system headers.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gtest-all.cc | 2 | ||||
| -rw-r--r-- | src/gtest-death-test.cc | 8 | ||||
| -rw-r--r-- | src/gtest-filepath.cc | 6 | ||||
| -rw-r--r-- | src/gtest-internal-inl.h | 6 | ||||
| -rw-r--r-- | src/gtest-port.cc | 8 | ||||
| -rw-r--r-- | src/gtest-printers.cc | 4 | ||||
| -rw-r--r-- | src/gtest-test-part.cc | 2 | ||||
| -rw-r--r-- | src/gtest-typed-test.cc | 4 | ||||
| -rw-r--r-- | src/gtest.cc | 4 | ||||
| -rw-r--r-- | src/gtest_main.cc | 2 | 
10 files changed, 23 insertions, 23 deletions
| diff --git a/src/gtest-all.cc b/src/gtest-all.cc index f3e22dd7..0a9cee52 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 66bf1898..ffd9f3a4 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 c1ef9188..96557f38 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 fe53c218..e0f4af5a 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 8a7005f7..ae0c663d 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 07a0d857..147f8b2a 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 5d183a44..5ddc67c1 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 f70043e6..a5cc88f9 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 4f0446dd..34e56d75 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 6d4d22d2..a09bbe0c 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"; | 
