diff options
| author | Jieyou Xu <jieyouxu@outlook.com> | 2024-11-26 07:56:32 +0800 |
|---|---|---|
| committer | Jieyou Xu <jieyouxu@outlook.com> | 2024-11-26 07:56:32 +0800 |
| commit | 3a42fd2bdcdda6e37a997caf30bae673fa9ca155 (patch) | |
| tree | fae6656f9bb758fda2e409bb57ba71c385cb1b49 | |
| parent | 7db7489f9bc274cb60c4956bfa56de0185eb1b9b (diff) | |
| download | rust-3a42fd2bdcdda6e37a997caf30bae673fa9ca155.tar.gz rust-3a42fd2bdcdda6e37a997caf30bae673fa9ca155.zip | |
tests: disable `avr-rjmp-offset` on Windows for now
The linker has been randomly crashing on `x86_64-mingw` that's causing spurious failures. Disable this test on Windows for now.
| -rw-r--r-- | tests/run-make/avr-rjmp-offset/rmake.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/run-make/avr-rjmp-offset/rmake.rs b/tests/run-make/avr-rjmp-offset/rmake.rs index 89cbca309be..2ea7ea877d4 100644 --- a/tests/run-make/avr-rjmp-offset/rmake.rs +++ b/tests/run-make/avr-rjmp-offset/rmake.rs @@ -10,6 +10,11 @@ //! wrong output is only produced with direct assembly generation, but not when //! "emit-asm" is used, as described in the issue description of #129301: //! https://github.com/rust-lang/rust/issues/129301#issue-2475070770 + +// FIXME(#133480): this has been randomly failing on `x86_64-mingw` due to linker hangs or +// crashes... so I'm going to disable this test for windows for now. +//@ ignore-windows + use run_make_support::{llvm_objdump, rustc}; fn main() { |
