diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-06-01 16:48:55 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-06-01 16:48:55 +0000 |
commit | 29fbfc21924a692155ac8e4e281f17438fe27d63 (patch) | |
tree | e2ef84a23a88741b4015ff6a00b099910b9d1aee /unittests/Tooling/ToolingTest.cpp | |
parent | 04bc014dfddd1298ae984a8632b41e0d77c9f556 (diff) |
#ifdef out a broken test on win32
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157819 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Tooling/ToolingTest.cpp')
-rw-r--r-- | unittests/Tooling/ToolingTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unittests/Tooling/ToolingTest.cpp b/unittests/Tooling/ToolingTest.cpp index 9122786b55..efabaf7f99 100644 --- a/unittests/Tooling/ToolingTest.cpp +++ b/unittests/Tooling/ToolingTest.cpp @@ -110,6 +110,9 @@ TEST(newFrontendActionFactory, CreatesFrontendActionFactoryFromFactoryType) { EXPECT_TRUE(Action.get() != NULL); } +#ifndef LLVM_ON_WIN32 +// This test breaks on Windows. + TEST(ToolInvocation, TestMapVirtualFile) { clang::FileManager Files((clang::FileSystemOptions())); std::vector<std::string> Args; @@ -123,5 +126,7 @@ TEST(ToolInvocation, TestMapVirtualFile) { EXPECT_TRUE(Invocation.run()); } +#endif + } // end namespace tooling } // end namespace clang |