From: Peter Collingbourne Date: Wed, 6 Nov 2013 23:02:51 +0000 (+0000) Subject: Disable a tooling test on Windows. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca94634d8b243a1559a7f33135d89c3b4658c5f0;p=clang Disable a tooling test on Windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194178 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Tooling/ToolingTest.cpp b/unittests/Tooling/ToolingTest.cpp index 096f688455..25df601df8 100644 --- a/unittests/Tooling/ToolingTest.cpp +++ b/unittests/Tooling/ToolingTest.cpp @@ -282,6 +282,7 @@ TEST(ClangToolTest, ArgumentAdjusters) { EXPECT_FALSE(Found); } +#ifndef _WIN32 TEST(ClangToolTest, BuildASTs) { FixedCompilationDatabase Compilations("/", std::vector()); @@ -299,6 +300,7 @@ TEST(ClangToolTest, BuildASTs) { llvm::DeleteContainerPointers(ASTs); } +#endif } // end namespace tooling } // end namespace clang