aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/DeclPrinterTest.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-24 00:27:50 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-24 00:27:50 +0000
commitf6ec15a23d271b45f8c0296b7ac44e994119bb8e (patch)
tree6ea0809e7d5a5c964841f4da29cbce9f43bdd9c3 /unittests/AST/DeclPrinterTest.cpp
parentc4684244c529284a1350d3cbc98615d1deab7f05 (diff)
DeclPrinter tests: mark test case we get wrong currently with WRONG.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/AST/DeclPrinterTest.cpp')
-rw-r--r--unittests/AST/DeclPrinterTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/AST/DeclPrinterTest.cpp b/unittests/AST/DeclPrinterTest.cpp
index b26ed93ddf..43cc48da82 100644
--- a/unittests/AST/DeclPrinterTest.cpp
+++ b/unittests/AST/DeclPrinterTest.cpp
@@ -517,7 +517,7 @@ TEST(DeclPrinter, TestCXXConstructorDecl11) {
"};",
constructor(ofClass(hasName("A"))).bind("id"),
"A<T...>(T &&ts...) : T(ts)"));
- // Should be: "A(T&&... ts) : T(ts)..."
+ // WRONG; Should be: "A(T&&... ts) : T(ts)..."
}