[clang] Fix UNSUPPORTED added to test in #194502. (PR #194541)

via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 27 22:03:41 PDT 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-clang-driver

Author: dyung

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/194541.diff


1 Files Affected:

- (modified) clang/test/Driver/modules-driver-import-std.cpp (+1-1) 


``````````diff
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

``````````

</details>


https://github.com/llvm/llvm-project/pull/194541


More information about the cfe-commits mailing list