xref: /llvm-project/compiler-rt/test/tsan/Darwin/objc-simple.mm (revision e4c1dd2c08586649ebb3ae1e51ad98f0efabaf68)
1// Test that a simple Obj-C program runs and exits without any warnings.
2
3// RUN: %clang_tsan %s -o %t -framework Foundation
4// RUN: %run %t 2>&1 | FileCheck %s
5
6#import <Foundation/Foundation.h>
7
8int main() {
9  NSLog(@"Hello world");
10}
11
12// CHECK: Hello world
13// CHECK-NOT: WARNING: ThreadSanitizer
14