Clarify test comments.

This commit is contained in:
Vytautas Astrauskas 2020-04-20 13:23:11 -07:00
parent e7b82fde4a
commit 40e50bf58b
2 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,6 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// Joining the same thread multiple times is undefined behavior.
// Joining the same thread from multiple threads is undefined behavior.
#![feature(rustc_private)]

View file

@ -2,6 +2,9 @@
//! Check that destructors of the library thread locals are executed immediately
//! after a thread terminates.
//!
//! FIXME: We should have a similar test for thread-local statics (statics
//! annotated with `#[thread_local]`) once they support destructors.
#![feature(thread_local_internals)]