14 lines · plain
1// Test that a simple Obj-C program runs and exits without any warnings.2 3// RUN: %clang_tsan %s -o %t -framework Foundation4// RUN: %run %t 2>&1 | FileCheck %s5 6#import <Foundation/Foundation.h>7 8int main() {9 NSLog(@"Hello world");10}11 12// CHECK: Hello world13// CHECK-NOT: WARNING: ThreadSanitizer14