Codebase list rust-pico-args / 35b9c4f
skip failing arm tests on arm Matthias Geiger 1 year, 2 months ago
5 changed file(s) with 27 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 skip-max-lifetime-arm.diff
0 rust-r2d2 (0.8.10-6) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package r2d2 0.8.10 from crates.io using debcargo 2.6.0
3 * Amended patch o skip test_max_lifetimes on arm(el,hf)
4
5 -- Matthias Geiger <matthias.geiger1024@tutanota.de> Sun, 12 Feb 2023 15:32:23 +0100
6
07 rust-r2d2 (0.8.10-5) unstable; urgency=medium
18
29 * Team upload.
0 skip-idle-timeout.diff
0 skip-failing-tests.diff
0 --- a/src/test.rs
1 +++ b/src/test.rs
2 @@ -347,6 +347,7 @@
3 }
4
5 #[test]
6 +#[cfg(not(any(target_arch = "x32", target_arch = "arm", target_arch = "powerpc64", target_arch = "mips")))]
7 fn test_idle_timeout() {
8 static DROPPED: AtomicUsize = AtomicUsize::new(0);
9
10 @@ -444,6 +445,7 @@
11 }
12
13 #[test]
14 +#[cfg(not(target_arch = "arm"))]
15 fn test_max_lifetime() {
16 static DROPPED: AtomicUsize = AtomicUsize::new(0);
17
+0
-10
src/r2d2/debian/patches/skip-idle-timeout.diff less more
0 --- a/src/test.rs
1 +++ b/src/test.rs
2 @@ -347,6 +347,7 @@
3 }
4
5 #[test]
6 +#[cfg(not(any(target_arch = "x32", target_arch = "arm", target_arch = "powerpc64", target_arch = "mips")))]
7 fn test_idle_timeout() {
8 static DROPPED: AtomicUsize = AtomicUsize::new(0);
9