[compiler-rt] a6f5585 - Disable resize_tls_dynamic test for HWASan

Thurston Dang via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 28 14:02:45 PDT 2023


Author: Thurston Dang
Date: 2023-03-28T21:02:18Z
New Revision: a6f5585a94a0e6ac656568a98ccb6c9736d828d1

URL: https://github.com/llvm/llvm-project/commit/a6f5585a94a0e6ac656568a98ccb6c9736d828d1
DIFF: https://github.com/llvm/llvm-project/commit/a6f5585a94a0e6ac656568a98ccb6c9736d828d1.diff

LOG: Disable resize_tls_dynamic test for HWASan

The test is not applicable because HWASan does not intercept __tls_get_addr.

This is pre-emptive cleanup, to get ready for Kirill's patch to enable sanitizer common tests for HWASan (https://reviews.llvm.org/D147067).

Note that there is an outstanding dynamic TLS bug for sanitizers - https://github.com/google/sanitizers/issues/1409
- but that isn't applicable here due to the lack of interception.

Test: LIT_FILTER=resize_tls_dynamic ninja check-sanitizer

Differential Revision: https://reviews.llvm.org/D147076

Added: 
    

Modified: 
    compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
index 5cb8fe374bf58..2d6e6c60f2437 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
@@ -6,7 +6,7 @@
 // UNSUPPORTED: i386-linux
 
 // Do not intercept __tls_get_addr
-// UNSUPPORTED: lsan, ubsan, android
+// UNSUPPORTED: hwasan, lsan, ubsan, android
 
 // FIXME: Investigate
 // UNSUPPORTED: target=powerpc64{{.*}}


        


More information about the llvm-commits mailing list