Skip to content

Commit 27b21af

Browse files
committed
Rustup to rustc 1.83.0-nightly (1d68e6d 2024-09-21)
1 parent 1d53572 commit 27b21af

4 files changed

+23
-3
lines changed

patches/0022-coretests-Disable-not-compiling-tests.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ index 42a26ae..5ac1042 100644
3838
@@ -1,3 +1,4 @@
3939
+#![cfg(test)]
4040
// tidy-alphabetical-start
41+
#![cfg_attr(bootstrap, feature(const_mut_refs))]
4142
#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
42-
#![cfg_attr(test, feature(cfg_match))]
4343
--
4444
2.21.0 (Apple Git-122)

patches/0027-coretests-128bit-atomic-operations.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ index 1e336bf..35e6f54 100644
1717
@@ -1,6 +1,5 @@
1818
#![cfg(test)]
1919
// tidy-alphabetical-start
20+
#![cfg_attr(bootstrap, feature(const_mut_refs))]
2021
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
2122
#![cfg_attr(test, feature(cfg_match))]
2223
#![feature(alloc_layout_extra)]
23-
#![feature(array_chunks)]
2424
diff --git a/atomic.rs b/atomic.rs
2525
index b735957..ea728b6 100644
2626
--- a/atomic.rs

patches/0028-coretests-Disable-long-running-tests.patch

+20
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,26 @@ index 8402833..84592e0 100644
4343

4444
#[test]
4545
fn test_slice_from_ptr_range() {
46+
diff --git a/lazy.rs b/lazy.rs
47+
index 711511e..49c8d78 100644
48+
--- a/lazy.rs
49+
+++ b/lazy.rs
50+
@@ -113,6 +113,7 @@ fn lazy_type_inference() {
51+
let _ = LazyCell::new(|| ());
52+
}
53+
54+
+/*
55+
#[test]
56+
#[should_panic = "LazyCell instance has previously been poisoned"]
57+
fn lazy_force_mut_panic() {
58+
@@ -123,6 +124,7 @@ fn lazy_force_mut_panic() {
59+
.unwrap_err();
60+
let _ = &*lazy;
61+
}
62+
+*/
63+
64+
#[test]
65+
fn lazy_force_mut() {
4666
--
4767
2.26.2.7.g19db9cfb68
4868

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2024-09-15"
2+
channel = "nightly-2024-09-22"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
44
profile = "minimal"

0 commit comments

Comments
 (0)