Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / thread_end_with_ignore3.cpp
blob372ba25c4e862bb736a7757fcf939c66fa8bf5a2
1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
3 // ReportIgnoresEnabled is disabled on Darwin, see comment in tsan_rtl_thread.cpp.
4 // UNSUPPORTED: darwin
5 #include "test.h"
7 int main() {
8 AnnotateIgnoreReadsBegin("", 0);
9 AnnotateIgnoreReadsBegin("", 0);
10 AnnotateIgnoreReadsEnd("", 0);
11 AnnotateIgnoreReadsEnd("", 0);
12 AnnotateIgnoreReadsBegin("", 0);
13 AnnotateIgnoreReadsBegin("", 0);
14 AnnotateIgnoreReadsEnd("", 0);
17 // CHECK: ThreadSanitizer: main thread finished with ignores enabled
18 // CHECK: Ignore was enabled at:
19 // CHECK: #0 AnnotateIgnoreReadsBegin
20 // CHECK: #1 main {{.*}}thread_end_with_ignore3.cpp:12
21 // CHECK: Ignore was enabled at:
22 // CHECK: #0 AnnotateIgnoreReadsBegin
23 // CHECK: #1 main {{.*}}thread_end_with_ignore3.cpp:13