diff options
Diffstat (limited to 'gtest/samples/sample8_unittest.cc')
-rw-r--r-- | gtest/samples/sample8_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtest/samples/sample8_unittest.cc b/gtest/samples/sample8_unittest.cc index ccf61d9..d76136a 100644 --- a/gtest/samples/sample8_unittest.cc +++ b/gtest/samples/sample8_unittest.cc @@ -162,12 +162,12 @@ INSTANTIATE_TEST_CASE_P(MeaningfulTestParameters, #else -// Google Test may not support Combine() with some compilers. If we -// use conditional compilation to compile out all code referring to -// the gtest_main library, MSVC linker will not link that library at -// all and consequently complain about missing entry point defined in -// that library (fatal error LNK1561: entry point must be -// defined). This dummy test keeps gtest_main linked in. +// Google Test doesn't support Combine() on some platforms and compilers, +// such as MSVC 7.1. If we use conditional compilation to compile out +// all code referring to the gtest_main library, MSVC linker will not +// link that library at all and consequently complain about missing entry +// point defined in that library (fatal error LNK1561: entry point must +// be defined). This dummy test keeps gtest_main linked in. TEST(DummyTest, CombineIsNotSupportedOnThisPlatform) {} #endif // GTEST_HAS_COMBINE |