File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1019,7 +1019,6 @@ mod test {
1019
1019
} )
1020
1020
1021
1021
#[ test]
1022
- #[ ignore( cfg( windows) ) ] // FIXME(#11003)
1023
1022
fn send_from_outside_runtime ( ) {
1024
1023
let ( p, c) = Chan :: < int > :: new ( ) ;
1025
1024
let ( p1, c1) = Chan :: new ( ) ;
@@ -1044,7 +1043,6 @@ mod test {
1044
1043
}
1045
1044
1046
1045
#[ test]
1047
- #[ ignore( cfg( windows) ) ] // FIXME(#11003)
1048
1046
fn recv_from_outside_runtime ( ) {
1049
1047
let ( p, c) = Chan :: < int > :: new ( ) ;
1050
1048
let ( dp, dc) = Chan :: new ( ) ;
@@ -1061,7 +1059,6 @@ mod test {
1061
1059
}
1062
1060
1063
1061
#[ test]
1064
- #[ ignore( cfg( windows) ) ] // FIXME(#11003)
1065
1062
fn no_runtime ( ) {
1066
1063
let ( p1, c1) = Chan :: < int > :: new ( ) ;
1067
1064
let ( p2, c2) = Chan :: < int > :: new ( ) ;
Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ mod imp {
286
286
287
287
pub unsafe fn wait ( cond : * c_void , m : * c_void ) {
288
288
unlock ( m) ;
289
- WaitForSingleObject ( cond as HANDLE , 0 ) ;
289
+ WaitForSingleObject ( cond as HANDLE , libc :: INFINITE ) ;
290
290
lock ( m) ;
291
291
}
292
292
You can’t perform that action at this time.
0 commit comments