diff options
| author | bors <bors@rust-lang.org> | 2024-12-28 05:48:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-12-28 05:48:39 +0000 |
| commit | 7cb084932ec9d787230ef1bccadfdff395c628f1 (patch) | |
| tree | 80c46cdc6d86d401d21d681d78821408d57e996d | |
| parent | 2b0ceb8c8c7d50b12ef29c7e37fb4f915389e28b (diff) | |
| parent | 378dc0357dd9aba1527c54faf983c44b121a85b0 (diff) | |
| download | rust-7cb084932ec9d787230ef1bccadfdff395c628f1.tar.gz rust-7cb084932ec9d787230ef1bccadfdff395c628f1.zip | |
Auto merge of #134842 - jieyouxu:disable-flaky-test, r=ibraheemdev
Disable `backtrace-debuginfo.rs` on windows-gnu This test appears still flaky cf. #117097 on `i686-mingw` as observed in https://github.com/rust-lang/rust/pull/131244#issuecomment-2564086577. r? compiler (or anyone, really)
| -rw-r--r-- | tests/ui/runtime/backtrace-debuginfo.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/runtime/backtrace-debuginfo.rs b/tests/ui/runtime/backtrace-debuginfo.rs index 9c4b15e64f5..da747ded44f 100644 --- a/tests/ui/runtime/backtrace-debuginfo.rs +++ b/tests/ui/runtime/backtrace-debuginfo.rs @@ -13,6 +13,10 @@ //@ ignore-sgx no processes //@ ignore-fuchsia Backtrace not symbolized, trace different line alignment +// FIXME(#117097): backtrace (possibly unwinding mechanism) seems to be different on at least +// `i686-mingw` (32-bit windows-gnu)? cc #128911. +//@ ignore-windows-gnu + use std::env; #[path = "backtrace-debuginfo-aux.rs"] mod aux; |
