diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-11-26 15:32:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-26 15:32:20 +0100 |
| commit | 5518c62629abac389f2fd85fa308cc85240440fc (patch) | |
| tree | e7a4acff861a5c073ae01acca9258a11314b1d0e | |
| parent | 52fcafe87228bb21f12c0c0b6a4e366b9e47840b (diff) | |
| parent | 3a42fd2bdcdda6e37a997caf30bae673fa9ca155 (diff) | |
| download | rust-5518c62629abac389f2fd85fa308cc85240440fc.tar.gz rust-5518c62629abac389f2fd85fa308cc85240440fc.zip | |
Rollup merge of #133481 - jieyouxu:avr-jmp-linker, r=saethlin
Disable `avr-rjmp-offset` on Windows for now The linker has been randomly crashing on `x86_64-mingw` that's causing spurious failures (#133480). Disable this test on Windows for now. cc `@jfrimmel` (nothing actionable, just FYI because linker gonna linker) cc `@ehuss` (who noticed this) r? compiler (or anyone really)
| -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() { |
