[clang] clang: Switch linker-wrapper test to unsupported windows (PR #130247)

Matt Arsenault via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 7 01:24:20 PST 2025


https://github.com/arsenm updated https://github.com/llvm/llvm-project/pull/130247

>From 56966b6456c610464226fa7317bb874f66590101 Mon Sep 17 00:00:00 2001
From: Matt Arsenault <Matthew.Arsenault at amd.com>
Date: Fri, 7 Mar 2025 12:37:18 +0700
Subject: [PATCH] clang: Switch linker-wrapper test to unsupported windows

Works fine on macos, so expand the tested hosts. This should work
on windows too, but it's been a pain debugging the error on the bot.
---
 clang/test/Driver/linker-wrapper.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/clang/test/Driver/linker-wrapper.c b/clang/test/Driver/linker-wrapper.c
index 7586b87743bf5..0aa8f7d72432a 100644
--- a/clang/test/Driver/linker-wrapper.c
+++ b/clang/test/Driver/linker-wrapper.c
@@ -1,9 +1,8 @@
+// UNSUPPORTED: system-windows
 // REQUIRES: x86-registered-target
 // REQUIRES: nvptx-registered-target
 // REQUIRES: amdgpu-registered-target
 
-// REQUIRES: system-linux
-
 // An externally visible variable so static libraries extract.
 __attribute__((visibility("protected"), used)) int x;
 



More information about the cfe-commits mailing list