diff options
author | Alexey Samsonov <samsonov@google.com> | 2014-02-14 14:35:48 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2014-02-14 14:35:48 +0000 |
commit | e951fe4eec98de20b9b843f97fec2cca84c48b9c (patch) | |
tree | e5d5d3dbf11683bfde3cfd829ccea8ddbbc0dd0e /test/tsan/thread_end_with_ignore3.cc | |
parent | ba2d0d7b386f38c97eee11749f2fc75449c2b253 (diff) | |
download | compiler-rt-e951fe4eec98de20b9b843f97fec2cca84c48b9c.tar.gz |
Move TSan lit-tests under test/tsan
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@201414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/tsan/thread_end_with_ignore3.cc')
-rw-r--r-- | test/tsan/thread_end_with_ignore3.cc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/tsan/thread_end_with_ignore3.cc b/test/tsan/thread_end_with_ignore3.cc new file mode 100644 index 000000000..bf46eb89b --- /dev/null +++ b/test/tsan/thread_end_with_ignore3.cc @@ -0,0 +1,22 @@ +// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s +extern "C" void AnnotateIgnoreReadsBegin(const char *f, int l); +extern "C" void AnnotateIgnoreReadsEnd(const char *f, int l); + +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.cc:10 +// CHECK: Ignore was enabled at: +// CHECK: #0 AnnotateIgnoreReadsBegin +// CHECK: #1 main {{.*}}thread_end_with_ignore3.cc:11 + |