[cfe-commits] r166674 - /cfe/trunk/unittests/Tooling/ToolingTest.cpp
NAKAMURA Takumi
geek4civic at gmail.com
Thu Oct 25 02:38:42 PDT 2012
Author: chapuni
Date: Thu Oct 25 04:38:41 2012
New Revision: 166674
URL: http://llvm.org/viewvc/llvm-project?rev=166674&view=rev
Log:
unittests/ToolingTest.cpp: Suppress newFrontendActionFactory.InjectsEndOfSourceFileCallback on Win32 for now. Investigating.
Modified:
cfe/trunk/unittests/Tooling/ToolingTest.cpp
Modified: cfe/trunk/unittests/Tooling/ToolingTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Tooling/ToolingTest.cpp?rev=166674&r1=166673&r2=166674&view=diff
==============================================================================
--- cfe/trunk/unittests/Tooling/ToolingTest.cpp (original)
+++ cfe/trunk/unittests/Tooling/ToolingTest.cpp Thu Oct 25 04:38:41 2012
@@ -142,6 +142,7 @@
bool Matched;
};
+#if !defined(_WIN32)
TEST(newFrontendActionFactory, InjectsEndOfSourceFileCallback) {
VerifyEndCallback EndCallback;
@@ -159,6 +160,7 @@
EXPECT_TRUE(EndCallback.Matched);
EXPECT_EQ(2u, EndCallback.Called);
}
+#endif
} // end namespace tooling
} // end namespace clang
More information about the cfe-commits
mailing list