Files
clang-p2996/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m
Frederic Riss 80b080723f TestMTCSimple.py: allow the test to run on Darwin embedded platforms
The test needed some updates to run using a different UI toolkit
and with a different libMTC, but it should run fine on a device.

llvm-svn: 374262
2019-10-09 23:52:31 +00:00

22 lines
486 B
Objective-C

#import <Foundation/Foundation.h>
#if __has_include(<AppKit/AppKit.h>)
#import <AppKit/AppKit.h>
#define XXView NSView
#else
#import <UIKit/UIKit.h>
#define XXView UIView
#endif
int main() {
XXView *view = [[XXView alloc] init];
dispatch_group_t g = dispatch_group_create();
dispatch_group_enter(g);
[NSThread detachNewThreadWithBlock:^{
@autoreleasepool {
[view superview];
}
dispatch_group_leave(g);
}];
dispatch_group_wait(g, DISPATCH_TIME_FOREVER);
}