2014-11-04 09:55:20 +08:00
|
|
|
// RUN: %clangxx_tsan -O1 %s -o %T/global_race_bin && %deflake %run %T/global_race_bin | FileCheck %s
|
2013-01-11 15:23:51 +08:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
2014-02-05 20:01:34 +08:00
|
|
|
#include <unistd.h>
|
2013-01-11 15:23:51 +08:00
|
|
|
|
|
|
|
int GlobalData[10];
|
|
|
|
|
|
|
|
void *Thread(void *a) {
|
2014-02-05 20:01:34 +08:00
|
|
|
sleep(1);
|
2013-01-11 15:23:51 +08:00
|
|
|
GlobalData[2] = 42;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2014-10-09 17:35:25 +08:00
|
|
|
// On FreeBSD, the %p conversion specifier works as 0x%x and thus does not
|
|
|
|
// match to the format used in the diagnotic message.
|
|
|
|
fprintf(stderr, "addr=0x%012lx\n", (unsigned long) GlobalData);
|
2013-01-11 15:23:51 +08:00
|
|
|
pthread_t t;
|
|
|
|
pthread_create(&t, 0, Thread, 0);
|
|
|
|
GlobalData[2] = 43;
|
|
|
|
pthread_join(t, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: addr=[[ADDR:0x[0-9,a-f]+]]
|
2013-10-16 17:56:17 +08:00
|
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|
2014-11-04 09:55:20 +08:00
|
|
|
// CHECK: Location is global 'GlobalData' of size 40 at [[ADDR]] (global_race_bin+0x{{[0-9,a-f]+}})
|
2014-05-30 22:08:51 +08:00
|
|
|
|