Rustup to rustc 1.59.0-nightly (0fb1c371d 2021-12-06)

This commit is contained in:
bjorn3 2021-12-07 18:22:44 +01:00
parent 7d34d3ad78
commit ff0b8347ca
2 changed files with 3 additions and 3 deletions

View file

@ -11,12 +11,12 @@ diff --git a/library/core/tests/slice.rs b/library/core/tests/slice.rs
index 2c8f00a..44847ee 100644
--- a/library/core/tests/slice.rs
+++ b/library/core/tests/slice.rs
@@ -2332,6 +2332,8 @@ macro_rules! empty_max_mut {
@@ -2332,7 +2332,8 @@ macro_rules! empty_max_mut {
};
}
+// These tests take way too long without optimizations
+/*
#[cfg(not(miri))] // Comparing usize::MAX many elements takes forever in Miri (and in rustc without optimizations)
take_tests! {
slice: &[(); usize::MAX], method: take,
(take_in_bounds_max_range_to, (..usize::MAX), Some(EMPTY_MAX), &[(); 0]),

View file

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2021-12-02"
channel = "nightly-2021-12-07"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]