Auto merge of #2276 - RalfJung:join, r=RalfJung
make sure a thread is joined Not sure how that can fail given that preemption is disabled but whatever...
This commit is contained in:
commit
99afff9dc1
@ -46,7 +46,7 @@ fn check_rwlock_unlock_bug1() {
|
||||
|
||||
// Make a waiting writer.
|
||||
let l2 = l.clone();
|
||||
thread::spawn(move || {
|
||||
let t = thread::spawn(move || {
|
||||
let mut w = l2.write().unwrap();
|
||||
*w += 1;
|
||||
});
|
||||
@ -59,6 +59,7 @@ fn check_rwlock_unlock_bug1() {
|
||||
thread::yield_now();
|
||||
assert_eq!(*r2, 0);
|
||||
drop(r2);
|
||||
t.join().unwrap();
|
||||
}
|
||||
|
||||
fn check_rwlock_unlock_bug2() {
|
||||
|
Loading…
Reference in New Issue
Block a user