You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
// RUN: rm -rf %t-dir
|
|
// RUN: mkdir %t-dir
|
|
|
|
// RUN: %clangxx_tsan -O1 %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
|
|
|
|
// 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
|
|
|