about summary refs log tree commit diff
path: root/library/core/tests
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2024-10-14 14:46:44 -0700
committerJosh Stone <jistone@redhat.com>2024-10-15 20:30:23 -0700
commitacb09bf741ba439356e824dd10a07054c6656fb6 (patch)
tree376a37a33d0c9d2e5817d6c4617e8f91cb320b39 /library/core/tests
parent6134f9f636422abeda9fbc1563f6aa9a5b0b3fdf (diff)
downloadrust-acb09bf741ba439356e824dd10a07054c6656fb6.tar.gz
rust-acb09bf741ba439356e824dd10a07054c6656fb6.zip
update bootstrap configs
Diffstat (limited to 'library/core/tests')
-rw-r--r--library/core/tests/atomic.rs2
-rw-r--r--library/core/tests/lib.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/library/core/tests/atomic.rs b/library/core/tests/atomic.rs
index 2bdaeb3845a..0ffba538b20 100644
--- a/library/core/tests/atomic.rs
+++ b/library/core/tests/atomic.rs
@@ -229,7 +229,7 @@ fn static_init() {
 
 #[test]
 // FIXME(static_mut_refs): Do not allow `static_mut_refs` lint
-#[cfg_attr(not(bootstrap), allow(static_mut_refs))]
+#[allow(static_mut_refs)]
 fn atomic_access_bool() {
     static mut ATOMIC: AtomicBool = AtomicBool::new(false);
 
diff --git a/library/core/tests/lib.rs b/library/core/tests/lib.rs
index 37e7db1157c..bfc0b638b7e 100644
--- a/library/core/tests/lib.rs
+++ b/library/core/tests/lib.rs
@@ -1,5 +1,4 @@
 // tidy-alphabetical-start
-#![cfg_attr(bootstrap, feature(const_mut_refs))]
 #![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
 #![cfg_attr(test, feature(cfg_match))]
 #![feature(alloc_layout_extra)]