1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Fri, 7 Feb 2025 09:41:36 +0100
Subject: tests: ignore `cross_validate_constants_with_c` test
This is currently broken in Debian, due to the possibility of running
tests with a different version of the underlying library than the
version used to generate the bindings.
---
tests/abi.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/abi.rs b/tests/abi.rs
index d51c85d..03ab522 100644
--- a/tests/abi.rs
+++ b/tests/abi.rs
@@ -112,6 +112,7 @@ impl Results {
}
#[test]
+#[ignore = "currently broken"]
fn cross_validate_constants_with_c() {
let mut c_constants: Vec<(String, String)> = Vec::new();
|