diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-25 09:38:41 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-25 09:38:41 +0000 |
| commit | 95fd41aeacfee23503d2fcdea9d5a350ace813e4 (patch) | |
| tree | d3549f07762405f9f4c2064c5ce38fb450b83349 | |
| parent | 8246d87db09f1cfbe13a76379bd550189496a925 (diff) | |
| download | bcm5719-llvm-95fd41aeacfee23503d2fcdea9d5a350ace813e4.tar.gz bcm5719-llvm-95fd41aeacfee23503d2fcdea9d5a350ace813e4.zip | |
unittests/ToolingTest.cpp: Suppress newFrontendActionFactory.InjectsEndOfSourceFileCallback on Win32 for now. Investigating.
llvm-svn: 166674
| -rw-r--r-- | clang/unittests/Tooling/ToolingTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/unittests/Tooling/ToolingTest.cpp b/clang/unittests/Tooling/ToolingTest.cpp index 7846df3b934..d40c613dd05 100644 --- a/clang/unittests/Tooling/ToolingTest.cpp +++ b/clang/unittests/Tooling/ToolingTest.cpp @@ -142,6 +142,7 @@ struct VerifyEndCallback : public EndOfSourceFileCallback { bool Matched; }; +#if !defined(_WIN32) TEST(newFrontendActionFactory, InjectsEndOfSourceFileCallback) { VerifyEndCallback EndCallback; @@ -159,6 +160,7 @@ TEST(newFrontendActionFactory, InjectsEndOfSourceFileCallback) { EXPECT_TRUE(EndCallback.Matched); EXPECT_EQ(2u, EndCallback.Called); } +#endif } // end namespace tooling } // end namespace clang |

