about summary refs log tree commit diff
path: root/tests/ui
diff options
context:
space:
mode:
authorDaniel Paoliello <danpao@microsoft.com>2025-05-07 10:46:36 -0700
committerDaniel Paoliello <danpao@microsoft.com>2025-05-07 10:49:54 -0700
commit3286d4aad789a48bfaef5a682d6dcf2642012216 (patch)
tree935146402ca46e0af1274018496ae64e71e62898 /tests/ui
parentf5d3fe273b8b9e7125bf8856d44793b6cc4b6735 (diff)
downloadrust-3286d4aad789a48bfaef5a682d6dcf2642012216.tar.gz
rust-3286d4aad789a48bfaef5a682d6dcf2642012216.zip
[win][arm64] Disable various DebugInfo tests that don't work on Arm64 Windows
Diffstat (limited to 'tests/ui')
-rw-r--r--tests/ui/runtime/backtrace-debuginfo.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/runtime/backtrace-debuginfo.rs b/tests/ui/runtime/backtrace-debuginfo.rs
index afc96d6bb5f..37fce2788b7 100644
--- a/tests/ui/runtime/backtrace-debuginfo.rs
+++ b/tests/ui/runtime/backtrace-debuginfo.rs
@@ -42,9 +42,13 @@ macro_rules! dump_and_die {
         // there, even on i686-pc-windows-msvc. We do the best we can in
         // rust-lang/rust to test it as well, but sometimes we just gotta keep
         // landing PRs.
+        //
+        // aarch64-msvc is broken as its backtraces are truncated.
+        // See https://github.com/rust-lang/rust/issues/140489
         if cfg!(any(target_os = "android",
                     all(target_os = "linux", target_arch = "arm"),
                     all(target_env = "msvc", target_arch = "x86"),
+                    all(target_env = "msvc", target_arch = "aarch64"),
                     target_os = "freebsd",
                     target_os = "dragonfly",
                     target_os = "openbsd")) {