From ca17892cc3c6d7dc1b5c830123e6c29c9f25c26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= 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