summaryrefslogtreecommitdiff
path: root/test/tsan/thread_end_with_ignore2.cc
blob: 9387ea488d5aba04025a4f06dd57689226055ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
extern "C" void AnnotateIgnoreWritesBegin(const char *f, int l);

int main() {
  AnnotateIgnoreWritesBegin("", 0);
}

// CHECK: ThreadSanitizer: main thread finished with ignores enabled
// CHECK:   Ignore was enabled at:
// CHECK:     #0 AnnotateIgnoreWritesBegin
// CHECK:     #1 main