From: Eric Liu Date: Thu, 24 Mar 2016 14:59:39 +0000 (+0000) Subject: Dsiable FormatStyle::GetStyleOfFile test case for mingw. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ec937288f3d932d2b480638123f5214c5575e8b;p=clang Dsiable FormatStyle::GetStyleOfFile test case for mingw. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@264289 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;