Skip to content

Commit

Permalink
Skip test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Sep 24, 2024
1 parent b0595d6 commit 0921c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/base/NSThread/late_unregister.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
#import <Foundation/NSLock.h>
#import <Foundation/NSNotification.h>

#if defined(_WIN32) && !defined(__clang__)
#if defined(_WIN32)
int main(void)
{
testHopeful = YES;
START_SET("Late unregistering of NSThread")
PASS(NO, "FIXME: Results in a deadlock in MinGW with GCC");
PASS(NO, "FIXME: Results in a deadlock in MinGW with Clang");
END_SET("Late unregistering of NSThread")
return 0;
}
Expand Down

0 comments on commit 0921c34

Please sign in to comment.