aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkosak <kosak@google.com>2015-07-27 21:18:24 +0000
committerkosak <kosak@google.com>2015-07-27 21:18:24 +0000
commitf487e9510be94c70f08485887a16b48d756bf38f (patch)
treed2caa162bfa728c2348d8ba7309a57bfc5e31836 /test
parent4188ec35292595660c1bc5b6f35cefe17188e1ab (diff)
downloadgoogletest-f487e9510be94c70f08485887a16b48d756bf38f.tar.gz
googletest-f487e9510be94c70f08485887a16b48d756bf38f.tar.bz2
googletest-f487e9510be94c70f08485887a16b48d756bf38f.zip
Inject the name of the Init function using a macro.
Diffstat (limited to 'test')
-rw-r--r--test/gtest-port_test.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/gtest-port_test.cc b/test/gtest-port_test.cc
index 14418804..d17bad00 100644
--- a/test/gtest-port_test.cc
+++ b/test/gtest-port_test.cc
@@ -382,15 +382,17 @@ TEST(GtestCheckDeathTest, LivesSilentlyOnSuccess) {
// the platform. The test will produce compiler errors in case of failure.
// For simplicity, we only cover the most important platforms here.
TEST(RegexEngineSelectionTest, SelectsCorrectRegexEngine) {
-#if GTEST_HAS_POSIX_RE
+#if !GTEST_USES_PCRE
+# if GTEST_HAS_POSIX_RE
EXPECT_TRUE(GTEST_USES_POSIX_RE);
-#else
+# else
EXPECT_TRUE(GTEST_USES_SIMPLE_RE);
-#endif
+# endif
+#endif // !GTEST_USES_PCRE
}
#if GTEST_USES_POSIX_RE