From 177348fbb49631c9ea6ec974c709e9a6530820aa Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sat, 20 Jun 2020 14:26:05 +0200 Subject: [PATCH] Unignore some more libcore tests --- patches/0023-core-Ignore-failing-tests.patch | 24 ++++---------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/patches/0023-core-Ignore-failing-tests.patch b/patches/0023-core-Ignore-failing-tests.patch index 18b5ed3d3bd..1c9097f21ab 100644 --- a/patches/0023-core-Ignore-failing-tests.patch +++ b/patches/0023-core-Ignore-failing-tests.patch @@ -38,31 +38,15 @@ index c9096b7..be37fcd 100644 } #[test] -+#[ignore] ++#[ignore] // checked_mul impl not yet checking for overflow fn test_iterator_step_by_nth_overflow() { #[cfg(target_pointer_width = "8")] type Bigger = u16; -@@ -2184,6 +2185,7 @@ fn test_range_inclusive_folds() { - } - - #[test] -+#[ignore] - fn test_range_size_hint() { - assert_eq!((0..0usize).size_hint(), (0, Some(0))); - assert_eq!((0..100usize).size_hint(), (100, Some(100))); -@@ -2210,6 +2212,7 @@ fn test_range_size_hint() { - } - - #[test] -+#[ignore] - fn test_range_inclusive_size_hint() { - assert_eq!((1..=0usize).size_hint(), (0, Some(0))); - assert_eq!((0..=0usize).size_hint(), (1, Some(1))); @@ -2305,6 +2308,7 @@ fn test_repeat_with_take_collect() { } #[test] -+#[ignore] ++#[ignore] // checked_mul impl not yet checking for overflow fn test_successors() { let mut powers_of_10 = successors(Some(1_u16), |n| n.checked_mul(10)); assert_eq!(powers_of_10.by_ref().collect::>(), &[1, 10, 100, 1_000, 10_000]); @@ -74,7 +58,7 @@ index a17c094..5bb11d2 100644 } #[test] -+#[ignore] ++#[ignore] // checked_mul impl not yet checking for overflow fn from_str_issue7588() { let u: Option = u8::from_str_radix("1000", 10).ok(); assert_eq!(u, None); @@ -102,7 +86,7 @@ index fac70c4..9107a02 100644 } #[test] -+#[ignore] ++#[ignore] // checked_mul impl not yet checking for overflow fn checked_mul() { assert_eq!(Duration::new(0, 1).checked_mul(2), Some(Duration::new(0, 2))); assert_eq!(Duration::new(1, 1).checked_mul(3), Some(Duration::new(3, 3)));