summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/tsan/global_race2.cc
blob: ac994cc0f4c46a30e9c14ede81bca58f1348fe4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
#include <pthread.h>
#include <stdio.h>
#include <stddef.h>
#include <unistd.h>

int x;

void *Thread(void *a) {
  sleep(1);
  x = 1;
  return 0;
}

int main() {
  // 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, "addr2=0x%012lx\n", (unsigned long) &x);
  pthread_t t;
  pthread_create(&t, 0, Thread, 0);
  x = 0;
  pthread_join(t, 0);
}

// CHECK: addr2=[[ADDR2:0x[0-9,a-f]+]]
// CHECK: WARNING: ThreadSanitizer: data race
// CHECK: Location is global 'x' of size 4 at [[ADDR2]] ({{.*}}+0x{{[0-9,a-f]+}})

OpenPOWER on IntegriCloud