about summary refs log tree commit diff
path: root/library/alloc/src
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2024-07-05 14:48:39 +0000
committerChris Denton <chris@chrisdenton.dev>2024-07-05 14:48:39 +0000
commit7566f412099a6dd68df2d1bca0c73484113b2ab9 (patch)
tree560839daa5255f3615f6cb47b25bb7511e78cd93 /library/alloc/src
parent11dd90f7613a4b160ed8398a3f1c7c129ad1a372 (diff)
downloadrust-7566f412099a6dd68df2d1bca0c73484113b2ab9.tar.gz
rust-7566f412099a6dd68df2d1bca0c73484113b2ab9.zip
Run alloc sync tests
Diffstat (limited to 'library/alloc/src')
-rw-r--r--library/alloc/src/sync.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/library/alloc/src/sync.rs b/library/alloc/src/sync.rs
index 90672164cb9..1983ea8281a 100644
--- a/library/alloc/src/sync.rs
+++ b/library/alloc/src/sync.rs
@@ -197,11 +197,7 @@ macro_rules! acquire {
 ///
 /// Sharing some immutable data between threads:
 ///
-// Note that we **do not** run these tests here. The windows builders get super
-// unhappy if a thread outlives the main thread and then exits at the same time
-// (something deadlocks) so we just avoid this entirely by not running these
-// tests.
-/// ```no_run
+/// ```
 /// use std::sync::Arc;
 /// use std::thread;
 ///
@@ -220,7 +216,7 @@ macro_rules! acquire {
 ///
 /// [`AtomicUsize`]: core::sync::atomic::AtomicUsize "sync::atomic::AtomicUsize"
 ///
-/// ```no_run
+/// ```
 /// use std::sync::Arc;
 /// use std::sync::atomic::{AtomicUsize, Ordering};
 /// use std::thread;