[cfe-commits] r162631 - /cfe/trunk/unittests/AST/DeclPrinterTest.cpp

NAKAMURA Takumi geek4civic at gmail.com
Fri Aug 24 17:05:56 PDT 2012


Author: chapuni
Date: Fri Aug 24 19:05:56 2012
New Revision: 162631

URL: http://llvm.org/viewvc/llvm-project?rev=162631&view=rev
Log:
ASTTests: Suppress TestCXXConstructorDecl11 on msvc for now. It seems incompatible.

Modified:
    cfe/trunk/unittests/AST/DeclPrinterTest.cpp

Modified: cfe/trunk/unittests/AST/DeclPrinterTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/AST/DeclPrinterTest.cpp?rev=162631&r1=162630&r2=162631&view=diff
==============================================================================
--- cfe/trunk/unittests/AST/DeclPrinterTest.cpp (original)
+++ cfe/trunk/unittests/AST/DeclPrinterTest.cpp Fri Aug 24 19:05:56 2012
@@ -510,6 +510,7 @@
     // WRONG; Should be: "A(const A &a);"
 }
 
+#if !defined(_MSC_VER)
 TEST(DeclPrinter, TestCXXConstructorDecl11) {
   ASSERT_TRUE(PrintedDeclCXX11Matches(
     "template<typename... T>"
@@ -520,7 +521,7 @@
     "A<T...>(T &&ts...) : T(ts)"));
     // WRONG; Should be: "A(T&&... ts) : T(ts)..."
 }
-
+#endif
 
 TEST(DeclPrinter, TestCXXDestructorDecl1) {
   ASSERT_TRUE(PrintedDeclMatches(





More information about the cfe-commits mailing list