From 3ec937288f3d932d2b480638123f5214c5575e8b Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Thu, 24 Mar 2016 14:59:39 +0000 Subject: [PATCH] Dsiable FormatStyle::GetStyleOfFile test case for mingw. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@264289 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Format/FormatTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 7aa17e7be6..0adade0b0a 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -11202,7 +11202,7 @@ TEST_F(FormatTest, FormatsTableGenCode) { // Since this test case uses UNIX-style file path. We disable it for MS // compiler. -#if !defined(_MSC_VER) +#if !defined(_MSC_VER) && !defined(__MINGW32__) TEST(FormatStyle, GetStyleOfFile) { vfs::InMemoryFileSystem FS; -- 2.40.0