diff options
| author | Flavio Percoco <flaper87@gmail.com> | 2014-12-22 00:49:42 +0100 |
|---|---|---|
| committer | Flavio Percoco <flaper87@gmail.com> | 2014-12-26 17:26:33 +0100 |
| commit | f436f9ca2963e33cc41802370bb9c551c833970e (patch) | |
| tree | c79b09c0cb3024b389027fd2a501a44a0a1f9bb9 /src/libtest | |
| parent | 686ce664da31f87b8d1c7377313f160d8fdcebe9 (diff) | |
| download | rust-f436f9ca2963e33cc41802370bb9c551c833970e.tar.gz rust-f436f9ca2963e33cc41802370bb9c551c833970e.zip | |
Make Send and Sync traits unsafe
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index dc30f973ff7..88dd6fce88f 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -976,7 +976,7 @@ enum TestEvent { pub type MonitorMsg = (TestDesc, TestResult, Vec<u8> ); -impl Send for MonitorMsg {} +unsafe impl Send for MonitorMsg {} fn run_tests<F>(opts: &TestOpts, tests: Vec<TestDescAndFn> , |
