[compiler-rt] [compiler-rt] [test] Generalize an UNSUPPORTED marking (PR #168858)
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 20 03:17:42 PST 2025
https://github.com/mstorsjo created https://github.com/llvm/llvm-project/pull/168858
Don't specifically target windows-msvc - the same goes for any windows target; mingw doesn't have dlfcn.h either.
>From ca17892cc3c6d7dc1b5c830123e6c29c9f25c26c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
Date: Thu, 20 Nov 2025 11:07:28 +0000
Subject: [PATCH] [compiler-rt] [test] Generalize an UNSUPPORTED marking
Don't specifically target windows-msvc - the same goes for any
windows target; mingw doesn't have dlfcn.h either.
---
compiler-rt/test/asan/TestCases/stack_container_dynamic_lib.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
More information about the llvm-commits
mailing list