1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: DebianOnMobile Maintainers
<debian-on-mobile-maintainers@alioth-lists.debian.net>
Date: Fri, 24 Oct 2025 10:11:22 +0200
Subject: fix-autopkgtest
---
tests/abi.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/abi.rs b/tests/abi.rs
index 41df8d1..87df090 100644
--- a/tests/abi.rs
+++ b/tests/abi.rs
@@ -146,6 +146,7 @@ fn cross_validate_constants_with_c() {
}
#[test]
+#[cfg(not(any(target_arch = "arm", target_arch = "x86")))]
fn cross_validate_layout_with_c() {
let mut c_layouts = Vec::new();
|