mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 21:46:37 +00:00

This reverts commit 1e1f7520279c93a59fa6511028ff40412065985e. It breaks ignore_noninstrumented_modules=1. Somehow we did not have any portable tests for this mode before (only Darwin tests). Add a portable test as well. Moreover, I think I was too fast uninlining all LibIgnore checks. For Java, Darwin and OpenMP LibIgnore is always enabled, so it makes sense to leave it as it was before. Reviewed By: melver Differential Revision: https://reviews.llvm.org/D106855
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
// RUN: rm -rf %t-dir
|
|
// RUN: mkdir %t-dir
|
|
|
|
// RUN: %clangxx_tsan -O1 -fno-builtin %s -DLIB -fPIC -fno-sanitize=thread -shared -o %t-dir/libignore_lib0.so
|
|
// RUN: %clangxx_tsan -O1 %s -L%t-dir -lignore_lib0 %link_libcxx_tsan -o %t
|
|
// RUN: echo running w/o suppressions:
|
|
// RUN: env LD_LIBRARY_PATH=%t-dir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} %deflake %run %t | FileCheck %s --check-prefix=CHECK-NOSUPP
|
|
// RUN: echo running with suppressions:
|
|
// RUN: env LD_LIBRARY_PATH=%t-dir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} %env_tsan_opts=suppressions='%s.supp' %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-WITHSUPP
|
|
// RUN: echo running with generic suppression of noninstrumented code:
|
|
// RUN: env LD_LIBRARY_PATH=%t-dir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} %env_tsan_opts=ignore_noninstrumented_modules=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-WITHSUPP
|
|
|
|
// Tests that interceptors coming from a library specified in called_from_lib
|
|
// suppression are ignored.
|
|
|
|
// Some aarch64 kernels do not support non executable write pages
|
|
// REQUIRES: stable-runtime
|
|
|
|
// UNSUPPORTED: ios
|
|
|
|
#ifndef LIB
|
|
|
|
extern "C" void libfunc();
|
|
|
|
int main() {
|
|
libfunc();
|
|
}
|
|
|
|
#else // #ifdef LIB
|
|
|
|
#include "ignore_lib_lib.h"
|
|
|
|
#endif // #ifdef LIB
|
|
|
|
// CHECK-NOSUPP: WARNING: ThreadSanitizer: data race
|
|
// CHECK-NOSUPP: OK
|
|
|
|
// CHECK-WITHSUPP-NOT: WARNING: ThreadSanitizer: data race
|
|
// CHECK-WITHSUPP: OK
|
|
|