1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +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",
"XStruct",
"aNamespace",
"xNamespace"
/* extra results:
anEnumeration
xEnumeration
*/
"xNamespace",
// enums may not be desired, but valid
"anEnumeration",
"xEnumeration"
};
public CompletionTest_NewTypeReference_NoPrefix(String name) {
super(name);
// unknown problem
setExpectFailure(77777);
}
public static Test suite() {

View file

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

View file

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