[clang] Fix UNSUPPORTED added to test in #194502. (PR #194541)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 27 22:03:04 PDT 2026
https://github.com/dyung created https://github.com/llvm/llvm-project/pull/194541
The change in #194502 attempted to mark the test as UNSUPPORTED for AArch64, but it didn't work because it wasn't specified correctly. This fixes it.
>From 8637452313b3b850d4568290e98b06ccb8882567 Mon Sep 17 00:00:00 2001
From: Douglas Yung <douglas.yung at sony.com>
Date: Mon, 27 Apr 2026 22:00:49 -0700
Subject: [PATCH] Fix UNSUPPORTED added to test in #194502.
---
clang/test/Driver/modules-driver-import-std.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clang/test/Driver/modules-driver-import-std.cpp b/clang/test/Driver/modules-driver-import-std.cpp
index 0fc49c1658c5d..394b0dc8d95d3 100644
--- a/clang/test/Driver/modules-driver-import-std.cpp
+++ b/clang/test/Driver/modules-driver-import-std.cpp
@@ -2,7 +2,7 @@
// modules.
// https://github.com/llvm/llvm-project/pull/194475#issuecomment-4331347690
-// UNSUPPORTED: aarch64
+// UNSUPPORTED: target={{.*}}aarch64{{.*}}, {{.*}}arm64{{.*}}
// The standard library modules manifest (libc++.modules.json) is discovered
// relative to the installed C++ standard library runtime libraries
More information about the cfe-commits
mailing list