[compiler-rt] [compiler-rt] [test] Generalize an UNSUPPORTED marking (PR #168858)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 20 03:18:14 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Martin Storsjö (mstorsjo)
<details>
<summary>Changes</summary>
Don't specifically target windows-msvc - the same goes for any windows target; mingw doesn't have dlfcn.h either.
---
Full diff: https://github.com/llvm/llvm-project/pull/168858.diff
1 Files Affected:
- (modified) compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp (+1-1)
``````````diff
diff --git a/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp b/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
index 07c143609e94d..cb771f5c95639 100644
--- a/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
+++ b/compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp
@@ -1,6 +1,6 @@
// Test to demonstrate compile-time disabling of container-overflow checks
// in order to handle uninstrumented libraries
-// UNSUPPORTED: target={{.*windows-msvc.*}}
+// UNSUPPORTED: target={{.*windows-.*}}
// Mimic a closed-source library compiled without ASan
// RUN: %clangxx_asan -fno-sanitize=address -DSHARED_LIB %s %fPIC -shared -o %t-so.so
``````````
</details>
https://github.com/llvm/llvm-project/pull/168858
More information about the llvm-commits
mailing list