[clang][modules-driver] Fix failing import-std regression test - #194502
Conversation
See llvm#194475 (comment). This constrains the test to not run on aarch64, where it fails on clang-aarch64-quick and llvm-clang-aarch64-darwin builders.
|
@llvm/pr-subscribers-clang-driver Author: Naveen Seth Hanig (naveen-seth) ChangesSee #194475 (comment). Full diff: https://github.com/llvm/llvm-project/pull/194502.diff 1 Files Affected:
diff --git a/clang/test/Driver/modules-driver-import-std.cpp b/clang/test/Driver/modules-driver-import-std.cpp
index e2a74df05fdc0..0fc49c1658c5d 100644
--- a/clang/test/Driver/modules-driver-import-std.cpp
+++ b/clang/test/Driver/modules-driver-import-std.cpp
@@ -1,6 +1,9 @@
// Checks that -fmodules-driver correctly handles the import of Standard library
// modules.
+// https://github.com/llvm/llvm-project/pull/194475#issuecomment-4331347690
+// UNSUPPORTED: aarch64
+
// The standard library modules manifest (libc++.modules.json) is discovered
// relative to the installed C++ standard library runtime libraries
// We need to create them in order for Clang to find the manifest.
|
|
@llvm/pr-subscribers-clang Author: Naveen Seth Hanig (naveen-seth) ChangesSee #194475 (comment). Full diff: https://github.com/llvm/llvm-project/pull/194502.diff 1 Files Affected:
diff --git a/clang/test/Driver/modules-driver-import-std.cpp b/clang/test/Driver/modules-driver-import-std.cpp
index e2a74df05fdc0..0fc49c1658c5d 100644
--- a/clang/test/Driver/modules-driver-import-std.cpp
+++ b/clang/test/Driver/modules-driver-import-std.cpp
@@ -1,6 +1,9 @@
// Checks that -fmodules-driver correctly handles the import of Standard library
// modules.
+// https://github.com/llvm/llvm-project/pull/194475#issuecomment-4331347690
+// UNSUPPORTED: aarch64
+
// The standard library modules manifest (libc++.modules.json) is discovered
// relative to the installed C++ standard library runtime libraries
// We need to create them in order for Clang to find the manifest.
|
…194502) See llvm#194475 (comment). This constrains the test to not run on aarch64, where it fails on `clang-aarch64-quick` and `llvm-clang-aarch64-darwin` builders. The failing builders don't show any output, and the test will be re-enabled for aarch64 in a later follow-up. Co-authored-by: Naveen Seth Hanig <naveen.hanig@oulook.com>
The change in llvm#194502 attempted to mark the test as UNSUPPORTED for AArch64, but it didn't work because it wasn't specified correctly. This fixes it.
…194502) See llvm#194475 (comment). This constrains the test to not run on aarch64, where it fails on `clang-aarch64-quick` and `llvm-clang-aarch64-darwin` builders. The failing builders don't show any output, and the test will be re-enabled for aarch64 in a later follow-up. Co-authored-by: Naveen Seth Hanig <naveen.hanig@oulook.com>
The change in llvm#194502 attempted to mark the test as UNSUPPORTED for AArch64, but it didn't work because it wasn't specified correctly. This fixes it.
See #194475 (comment).
This constrains the test to not run on aarch64, where it fails on
clang-aarch64-quickandllvm-clang-aarch64-darwinbuilders.The failing builders don't show any output, and the test will be re-enabled for aarch64 in a later follow-up.