Codebase list rust-dtoa / af8e131
shared_library: Disable failing test on arm64/powerpc64el James McCoy 2 years ago
3 changed file(s) with 31 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-shared-library (0.1.9-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package shared_library 0.1.9 from crates.io using debcargo 2.5.0
3 * Disable failing test on arm64/powerpc64el
4
5 -- James McCoy <jamessan@debian.org> Sat, 14 May 2022 23:45:39 -0400
6
07 rust-shared-library (0.1.9-1) unstable; urgency=medium
18
29 * Package shared_library 0.1.9 from crates.io using debcargo 2.5.0
0 Description: Disable failing test on arm64/ppc64le
1 Bug: https://github.com/tomaka/shared_library/issues/17
2 Last-Update: 2022-05-14
3 ---
4 --- a/src/dynamic_library.rs
5 +++ b/src/dynamic_library.rs
6 @@ -164,7 +164,15 @@ mod test {
7 use std::path::Path;
8
9 #[test]
10 - #[cfg_attr(any(windows, target_os = "android"), ignore)] // FIXME #8818, #10379
11 + #[cfg_attr(
12 + any(
13 + windows,
14 + target_os = "android",
15 + target_arch = "aarch64",
16 + target_arch = "powerpc64"
17 + ),
18 + ignore
19 + )] // FIXME #8818, #10379
20 fn test_loading_cosine() {
21 // The math library does not need to be loaded since it is already
22 // statically linked in
0 disable-cosine-test.patch