summaryrefslogtreecommitdiff
path: root/test/tsan/suppress_same_address.cc
blob: 3ec13ee8302fc7dc5ce7cb2a011997e6dd5693c2 (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
29
30
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
#include "test.h"

volatile int X;

void *Thread1(void *x) {
  barrier_wait(&barrier);
  X = 42;
  X = 66;
  X = 78;
  return 0;
}

void *Thread2(void *x) {
  X = 11;
  X = 99;
  X = 73;
  barrier_wait(&barrier);
  return 0;
}

int main() {
  barrier_init(&barrier, 2);
  pthread_t t;
  pthread_create(&t, 0, Thread1, 0);
  Thread2(0);
  pthread_join(t, 0);
}

// CHECK: ThreadSanitizer: reported 1 warnings