Skip to content

Commit

Permalink
Mark as flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Sep 23, 2024
1 parent b9ee6a1 commit c81552c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/base/NSProxy/test00.m
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ - (void) forwardInvocation:(NSInvocation *)inv
int main()
{
NSAutoreleasePool *arp = [NSAutoreleasePool new];
START_SET("NSProxy 0")
testHopeful = YES; // This test is somewhat flaky on GCC MinGW. Further investigation is needed.

char *prefix = "The class 'NSProxy' ";
Class theClass = NSClassFromString(@"NSProxy");
id obj = nil;
Expand Down Expand Up @@ -100,6 +103,7 @@ int main()
PASS([rem compare: obj] == NSOrderedSame, "remote compare: proxy");
PASS([rem compare: sub] == NSOrderedSame, "remote compare: subclass");

END_SET("NSProxy 0")
[arp release]; arp = nil;
return 0;
}

0 comments on commit c81552c

Please sign in to comment.