Files
clang-p2996/compiler-rt/test/tsan/interface_atomic_test.c
Greg Fitzgerald b8aae5405b Add %run to all lit tests
llvm-svn: 207709
2014-04-30 21:34:17 +00:00

17 lines
440 B
C

// Test that we can include header with TSan atomic interface.
// RUN: %clang_tsan %s -o %t && %run %t | FileCheck %s
#include <sanitizer/tsan_interface_atomic.h>
#include <stdio.h>
int main() {
__tsan_atomic32 a;
__tsan_atomic32_store(&a, 100, __tsan_memory_order_release);
int res = __tsan_atomic32_load(&a, __tsan_memory_order_acquire);
if (res == 100) {
// CHECK: PASS
printf("PASS\n");
return 0;
}
return 1;
}