aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCopybara-Service <copybara-worker@google.com>2023-07-31 13:32:19 -0700
committerCopybara-Service <copybara-worker@google.com>2023-07-31 13:32:19 -0700
commit6f6ab4212aa02cfe02e480711246da4fc17b0761 (patch)
treef6874ed62a76e62fce45b731ad949a76cc7e3f97
parentc875c4e2249ec124c24f72141b3780c22256fd44 (diff)
parentefe6bb1db894556b5125b3b3147d6c37fbaffa51 (diff)
downloadgoogletest-6f6ab4212aa02cfe02e480711246da4fc17b0761.tar.gz
Merge pull request #4325 from juliencombattelli:main
PiperOrigin-RevId: 552577282 Change-Id: I2b4d20d155ad5746e36711c039293d5c996a332e
-rw-r--r--googletest/src/gtest-internal-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest-internal-inl.h b/googletest/src/gtest-internal-inl.h
index 1e9b5c26..5b7fcbd0 100644
--- a/googletest/src/gtest-internal-inl.h
+++ b/googletest/src/gtest-internal-inl.h
@@ -672,7 +672,7 @@ class GTEST_API_ UnitTestImpl {
void AddTestInfo(internal::SetUpTestSuiteFunc set_up_tc,
internal::TearDownTestSuiteFunc tear_down_tc,
TestInfo* test_info) {
-#ifdef GTEST_HAS_FILE_SYSTEM
+#if GTEST_HAS_FILE_SYSTEM
// In order to support thread-safe death tests, we need to
// remember the original working directory when the test program
// was first invoked. We cannot do this in RUN_ALL_TESTS(), as