diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2014-11-19 10:46:23 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2014-11-19 10:46:23 +0000 |
commit | abe5a58b79bb189c7983fcf6c3db220cf11b7804 (patch) | |
tree | e1b7af5e6bcc5a5b969379ad43a427b0b58de5f5 /test/tsan/dlclose.cc | |
parent | b99944bba3e3062fb47234fc7e277c51145f109b (diff) | |
download | compiler-rt-abe5a58b79bb189c7983fcf6c3db220cf11b7804.tar.gz |
tsan: exclude unsupported test from test_output.sh script
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@222344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/tsan/dlclose.cc')
-rw-r--r-- | test/tsan/dlclose.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tsan/dlclose.cc b/test/tsan/dlclose.cc index 5325d6f0f..1a93fe661 100644 --- a/test/tsan/dlclose.cc +++ b/test/tsan/dlclose.cc @@ -1,6 +1,8 @@ // RUN: %clangxx_tsan -O1 %s -DBUILD_SO -fPIC -shared -o %t-so.so // RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s +// If we mention TSAN_OPTIONS, the test won't run from test_output.sh script. + // Test case for // https://code.google.com/p/thread-sanitizer/issues/detail?id=80 |