aboutsummaryrefslogtreecommitdiff
path: root/unittests/Tooling/ToolingTest.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-10-25 09:38:41 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-10-25 09:38:41 +0000
commitd9a2d5bdb747836917c2a5f7e12d075ec6762c77 (patch)
tree5f86aff1513418aebdaa185b7d8a2ee1c07ef693 /unittests/Tooling/ToolingTest.cpp
parent9fb6b27e6d584ac339363357335f8d6de3a652ac (diff)
unittests/ToolingTest.cpp: Suppress newFrontendActionFactory.InjectsEndOfSourceFileCallback on Win32 for now. Investigating.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Tooling/ToolingTest.cpp')
-rw-r--r--unittests/Tooling/ToolingTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/Tooling/ToolingTest.cpp b/unittests/Tooling/ToolingTest.cpp
index 7846df3b93..d40c613dd0 100644
--- a/unittests/Tooling/ToolingTest.cpp
+++ b/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