Skip to content

Commit

Permalink
Merge pull request #1843 from matlo607/fix-unittest-msys-ColoredOutpu…
Browse files Browse the repository at this point in the history
…tTest

[msys] fix unittest ColoredOutputTest.UsesColorsWhenTermSupportsColors
  • Loading branch information
gennadiycivil committed Sep 20, 2018
2 parents 09560fb + c9fe337 commit 8bf2972
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions googletest/include/gtest/internal/gtest-port-arch.h
Expand Up @@ -38,14 +38,15 @@
// Determines the platform on which Google Test is compiled.
#ifdef __CYGWIN__
# define GTEST_OS_CYGWIN 1
# elif defined(__MINGW__) || defined(__MINGW32__) || defined(__MINGW64__)
# define GTEST_OS_WINDOWS_MINGW 1
# define GTEST_OS_WINDOWS 1
#elif defined __SYMBIAN32__
# define GTEST_OS_SYMBIAN 1
#elif defined _WIN32
# define GTEST_OS_WINDOWS 1
# ifdef _WIN32_WCE
# define GTEST_OS_WINDOWS_MOBILE 1
# elif defined(__MINGW__) || defined(__MINGW32__)
# define GTEST_OS_WINDOWS_MINGW 1
# elif defined(WINAPI_FAMILY)
# include <winapifamily.h>
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
Expand Down
2 changes: 1 addition & 1 deletion googletest/test/gtest_unittest.cc
Expand Up @@ -6826,7 +6826,7 @@ TEST(ColoredOutputTest, UsesColorsWhenStdoutIsTty) {
TEST(ColoredOutputTest, UsesColorsWhenTermSupportsColors) {
GTEST_FLAG(color) = "auto";

#if GTEST_OS_WINDOWS
#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW
// On Windows, we ignore the TERM variable as it's usually not set.

SetEnv("TERM", "dumb");
Expand Down

0 comments on commit 8bf2972

Please sign in to comment.