Skip to content

Commit aeb658e

Browse files
committed
Auto merge of #807 - RalfJung:test-name, r=RalfJung
better name for a test: threads -> sync
2 parents 048b00d + e44d38e commit aeb658e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/run-pass/threads.rs renamed to tests/run-pass/sync.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ fn main() {
88
drop(m.lock());
99
drop(m);
1010

11-
// We don't provide RwLock on Windows
12-
#[cfg(not(target_os = "windows"))]
11+
#[cfg(not(target_os = "windows"))] // TODO: implement RwLock on Windows
1312
{
1413
let rw = sync::RwLock::new(0);
1514
drop(rw.read());

0 commit comments

Comments
 (0)