std: Prevent deadlocks in doctests on Windows

Windows historically has problems with threads panicking and the main thread
exiting at the same time, typically causing deadlocks. In the past (#25824)
we've joined on threads but this just prevents running the test for now to avoid
tampering with the example.
This commit is contained in:
Alex Crichton 2017-05-05 07:02:48 -07:00
parent a6ab049ed1
commit 94e4b459ef

View File

@ -723,7 +723,9 @@ struct Inner {
/// ///
/// # Examples /// # Examples
/// ///
/// ``` /// ```no_run
/// # // Note that this example isn't executed by default because it causes
/// # // deadlocks on Windows unfortunately (see #25824)
/// use std::thread::Builder; /// use std::thread::Builder;
/// ///
/// for i in 0..5 { /// for i in 0..5 {