1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Remove expected failure from 3 completion tests which actually pass

This commit is contained in:
Anton Leherbauer 2007-03-20 11:44:19 +00:00
parent 46c5ad0339
commit 4ccfdf9b6f
3 changed files with 9 additions and 15 deletions

View file

@ -34,17 +34,14 @@ public class CompletionTest_NewTypeReference_NoPrefix extends CompletionProposa
"xOtherClass", "xOtherClass",
"XStruct", "XStruct",
"aNamespace", "aNamespace",
"xNamespace" "xNamespace",
/* extra results: // enums may not be desired, but valid
anEnumeration "anEnumeration",
xEnumeration "xEnumeration"
*/
}; };
public CompletionTest_NewTypeReference_NoPrefix(String name) { public CompletionTest_NewTypeReference_NoPrefix(String name) {
super(name); super(name);
// unknown problem
setExpectFailure(77777);
} }
public static Test suite() { public static Test suite() {

View file

@ -31,16 +31,13 @@ public class CompletionTest_NewTypeReference_Prefix extends CompletionProposals
"aClass", "aClass",
"anotherClass", "anotherClass",
"aNamespace", "aNamespace",
"AStruct" "AStruct",
// extra proposal: // enums may not be desired, but valid
// anEnumeration "anEnumeration"
}; };
public CompletionTest_NewTypeReference_Prefix(String name) { public CompletionTest_NewTypeReference_Prefix(String name) {
super(name); super(name);
// see https://bugs.eclipse.org/bugs/show_bug.cgi?id=109724
setExpectFailure(109724);
} }
public static Test suite() { public static Test suite() {

View file

@ -33,6 +33,8 @@ public class CompletionTest_SingleName_Method_Prefix extends CompletionProposa
"anotherFunction(void) void", "anotherFunction(void) void",
"aClass", "aClass",
"anotherClass", "anotherClass",
"anotherClass(const anotherClass &)",
"anotherClass(void)",
"aNamespace", "aNamespace",
"anEnumeration", "anEnumeration",
"aFirstEnum", "aFirstEnum",
@ -44,8 +46,6 @@ public class CompletionTest_SingleName_Method_Prefix extends CompletionProposa
public CompletionTest_SingleName_Method_Prefix(String name) { public CompletionTest_SingleName_Method_Prefix(String name) {
super(name); super(name);
// see https://bugs.eclipse.org/bugs/show_bug.cgi?id=109724
setExpectFailure(109724);
} }
public static Test suite() { public static Test suite() {