Signed-off-by: Fabian Grünbichler <git@fabian.gruenbichler.email>
Gbp-Pq: Topic build
Gbp-Pq: Name disable-broken-i386-tests.patch
fn has_broken_floats() -> bool {
// i586 targets are broken due to <https://github.com/rust-lang/rust/issues/114479>.
- std::env::var("TARGET").is_ok_and(|v| v.contains("i586"))
+ // Debian: this is true for our i686 target (i368 arch)
+ std::env::var("TARGET").is_ok_and(|v| v.contains("i686"))
}
#[cfg(target_arch = "x86_64")]
//@ check-pass
//@ compile-flags: -Z print-vtable-sizes
+//Debian: broken floats break the expected output on i386
+//@ ignore-i686
#![crate_type = "lib"]
trait A<T: help::V>: AsRef<[T::V]> + AsMut<[T::V]> {}