summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal/gtest-port.h
diff options
context:
space:
mode:
authorCopybara-Service <copybara-worker@google.com>2022-06-13 15:38:29 (GMT)
committerCopybara-Service <copybara-worker@google.com>2022-06-13 15:38:29 (GMT)
commitb644b4fbbf07e35629b0daa44ec4110ddcbe2036 (patch)
tree58536754b719aea9cb23a451ba6bda5205f8e99b /googletest/include/gtest/internal/gtest-port.h
parentb1f84bf1763b1010597bff13c79b5388eebdf205 (diff)
parent3727a9007512507e247fdab69c62e039f29ff80b (diff)
downloadgoogletest-b644b4fbbf07e35629b0daa44ec4110ddcbe2036.zip
googletest-b644b4fbbf07e35629b0daa44ec4110ddcbe2036.tar.gz
googletest-b644b4fbbf07e35629b0daa44ec4110ddcbe2036.tar.bz2
Merge pull request #3866 from eidosmontreal:simplify_shouldusecolor
PiperOrigin-RevId: 454616721 Change-Id: I33b5671646ec027da48cc941baf84b4ddc722e07
Diffstat (limited to 'googletest/include/gtest/internal/gtest-port.h')
-rw-r--r--googletest/include/gtest/internal/gtest-port.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h
index 7162e6e..e52d8a7 100644
--- a/googletest/include/gtest/internal/gtest-port.h
+++ b/googletest/include/gtest/internal/gtest-port.h
@@ -1965,7 +1965,8 @@ inline int StrCaseCmp(const char* s1, const char* s2) {
}
inline char* StrDup(const char* src) { return strdup(src); }
#else // !__BORLANDC__
-#if GTEST_OS_WINDOWS_MOBILE
+#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_ZOS || GTEST_OS_IOS || \
+ GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT || defined(ESP_PLATFORM)
inline int DoIsATTY(int /* fd */) { return 0; }
#else
inline int DoIsATTY(int fd) { return _isatty(fd); }