Files
clang-p2996/compiler-rt/test/tsan/thread_end_with_ignore3.cpp
Dmitry Vyukov 8214764f35 tsan: declare annotations in test.h
We already declare subset of annotations in test.h.
But some are duplicated and declared in tests.
Move all annotation declarations to test.h.

Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D102152
2021-05-12 07:22:39 +02:00

21 lines
684 B
C++

// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
#include "test.h"
int main() {
AnnotateIgnoreReadsBegin("", 0);
AnnotateIgnoreReadsBegin("", 0);
AnnotateIgnoreReadsEnd("", 0);
AnnotateIgnoreReadsEnd("", 0);
AnnotateIgnoreReadsBegin("", 0);
AnnotateIgnoreReadsBegin("", 0);
AnnotateIgnoreReadsEnd("", 0);
}
// CHECK: ThreadSanitizer: main thread finished with ignores enabled
// CHECK: Ignore was enabled at:
// CHECK: #0 AnnotateIgnoreReadsBegin
// CHECK: #1 main {{.*}}thread_end_with_ignore3.cpp:9
// CHECK: Ignore was enabled at:
// CHECK: #0 AnnotateIgnoreReadsBegin
// CHECK: #1 main {{.*}}thread_end_with_ignore3.cpp:10