make sure a thread is joined
This commit is contained in:
parent
ab88ba4299
commit
fb186a2f2d
@ -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