1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 18:55:38 +02:00

More descriptive test name.

This commit is contained in:
Sergey Prigogin 2013-05-23 15:27:11 -07:00
parent 17e311d5cb
commit d625eaccc4

View file

@ -2326,7 +2326,7 @@ public class AST2TemplateTests extends AST2TestBase {
// template<class U> void f1(void(*f)(const U&)) {} // template<class U> void f1(void(*f)(const U&)) {}
// void f2(const int& b){} // void f2(const int& b){}
// void test() { // void test() {
// f1(&f2); // problem on f1 // f1(&f2);
// } // }
public void testSimplifiedFunctionTemplateWithFunctionPointer_281783() throws Exception { public void testSimplifiedFunctionTemplateWithFunctionPointer_281783() throws Exception {
parseAndCheckBindings(); parseAndCheckBindings();
@ -4207,7 +4207,7 @@ public class AST2TemplateTests extends AST2TestBase {
// }; // };
// template <typename T> class Y : X1<int> { // template <typename T> class Y : X1<int> {
// void test() { // void test() {
// X<int> x; // problem binding on X<int> // X<int> x;
// } // }
// }; // };
public void testFriendClassTemplate_266992() throws Exception { public void testFriendClassTemplate_266992() throws Exception {
@ -7551,7 +7551,7 @@ public class AST2TemplateTests extends AST2TestBase {
// //
// typedef A<C<const char*, K>> D; // typedef A<C<const char*, K>> D;
// //
// typedef B<D>::type E; // Problem on B<D>::type // typedef B<D>::type E;
public void testRegression_401743a() throws Exception { public void testRegression_401743a() throws Exception {
parseAndCheckBindings(); parseAndCheckBindings();
} }
@ -7573,7 +7573,7 @@ public class AST2TemplateTests extends AST2TestBase {
// //
// typedef A<C<F, K>> D; // typedef A<C<F, K>> D;
// //
// typedef B<D>::type E; // Problem on B<D>::type // typedef B<D>::type E;
public void testRegression_401743b() throws Exception { public void testRegression_401743b() throws Exception {
parseAndCheckBindings(); parseAndCheckBindings();
} }
@ -7597,7 +7597,7 @@ public class AST2TemplateTests extends AST2TestBase {
// C<int>::pointer p; // C<int>::pointer p;
// p->a = 0; // p->a = 0;
// } // }
public void testRegression_408314() throws Exception { public void testPseudoRecursiveTypedef_408314() throws Exception {
parseAndCheckBindings(); parseAndCheckBindings();
} }