From a0a8c458400cbea726112632c5b59cda83393a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A5re=20Alsaker?= Date: Sun, 27 Aug 2023 19:11:08 +0200 Subject: [PATCH] Ignore questionable tests --- src/range.rs | 1 + src/range_inclusive.rs | 1 + tests/octillion.rs | 3 +++ 3 files changed, 5 insertions(+) diff --git a/src/range.rs b/src/range.rs index 57b613e1c..3f074ea77 100644 --- a/src/range.rs +++ b/src/range.rs @@ -429,6 +429,7 @@ fn test_u128_opt_len() { // when using the `opt_len` "indexed" mode. #[test] #[cfg(target_pointer_width = "64")] +#[ignore] fn test_usize_i64_overflow() { use crate::ThreadPoolBuilder; use std::i64; diff --git a/src/range_inclusive.rs b/src/range_inclusive.rs index b7bb0cac7..b130211d8 100644 --- a/src/range_inclusive.rs +++ b/src/range_inclusive.rs @@ -353,6 +353,7 @@ fn test_u128_opt_len() { // when using the `opt_len` "indexed" mode. #[test] #[cfg(target_pointer_width = "64")] +#[ignore] fn test_usize_i64_overflow() { use crate::ThreadPoolBuilder; use std::i64; diff --git a/tests/octillion.rs b/tests/octillion.rs index 1af9ad8ba..212e2cc86 100644 --- a/tests/octillion.rs +++ b/tests/octillion.rs @@ -68,6 +68,7 @@ fn two_threads R, R: Send>(f: F) -> R { } #[test] +#[ignore] #[cfg_attr( any( not(target_pointer_width = "64"), @@ -85,6 +86,7 @@ fn find_last_octillion() { } #[test] +#[ignore] #[cfg_attr( any( not(target_pointer_width = "64"), @@ -99,6 +101,7 @@ fn find_last_octillion_inclusive() { } #[test] +#[ignore] #[cfg_attr( any( not(target_pointer_width = "64"),