mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
25 lines
884 B
Diff
25 lines
884 B
Diff
From: =?utf-8?q?Fabian_Gr=C3=BCnbichler?= <git@fabian.gruenbichler.email>
|
|
Date: Wed, 23 Oct 2024 22:29:50 +0200
|
|
Subject: disable broken i386 tests
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Fabian Grünbichler <git@fabian.gruenbichler.email>
|
|
---
|
|
tests/ui/traits/object/print_vtable_sizes.rs | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/tests/ui/traits/object/print_vtable_sizes.rs b/tests/ui/traits/object/print_vtable_sizes.rs
|
|
index 2b1745d..fd94386 100644
|
|
--- a/tests/ui/traits/object/print_vtable_sizes.rs
|
|
+++ b/tests/ui/traits/object/print_vtable_sizes.rs
|
|
@@ -1,5 +1,7 @@
|
|
//@ check-pass
|
|
//@ compile-flags: -Z print-vtable-sizes
|
|
+//Debian: broken floats break the expected output on i386
|
|
+//@ ignore-i686-unknown-linux-gnu
|
|
#![crate_type = "lib"]
|
|
|
|
trait A<T: help::V>: AsRef<[T::V]> + AsMut<[T::V]> {}
|