Commit 6538258 1 parent 6828428 commit 6538258 Copy full SHA for 6538258
File tree 8 files changed +21
-0
lines changed
8 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ fn file_test_smoke_test_impl() {
165
165
}
166
166
167
167
#[ test]
168
+ #[ ignore( cfg( windows) ) ] // FIXME #8810
168
169
fn file_test_io_smoke_test ( ) {
169
170
file_test_smoke_test_impl ( ) ;
170
171
}
@@ -232,6 +233,7 @@ fn file_test_io_non_positional_read_impl() {
232
233
}
233
234
234
235
#[ test]
236
+ #[ ignore( cfg( windows) ) ] // FIXME #8810
235
237
fn file_test_io_non_positional_read ( ) {
236
238
file_test_io_non_positional_read_impl ( ) ;
237
239
}
@@ -264,6 +266,7 @@ fn file_test_io_seeking_impl() {
264
266
}
265
267
}
266
268
#[ test]
269
+ #[ ignore( cfg( windows) ) ] // FIXME #8810
267
270
fn file_test_io_seek_and_tell_smoke_test ( ) {
268
271
file_test_io_seeking_impl ( ) ;
269
272
}
@@ -295,6 +298,7 @@ fn file_test_io_seek_and_write_impl() {
295
298
}
296
299
}
297
300
#[ test]
301
+ #[ ignore( cfg( windows) ) ] // FIXME #8810
298
302
fn file_test_io_seek_and_write ( ) {
299
303
file_test_io_seek_and_write_impl ( ) ;
300
304
}
@@ -334,6 +338,7 @@ fn file_test_io_seek_shakedown_impl() {
334
338
}
335
339
}
336
340
#[ test]
341
+ #[ ignore( cfg( windows) ) ] // FIXME #8810
337
342
fn file_test_io_seek_shakedown ( ) {
338
343
file_test_io_seek_shakedown_impl ( ) ;
339
344
}
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ mod test {
162
162
}
163
163
164
164
#[ test]
165
+ #[ ignore( cfg( windows) ) ] // FIXME #8811
165
166
fn connect_error ( ) {
166
167
do run_in_newsched_task {
167
168
let mut called = false ;
@@ -258,6 +259,7 @@ mod test {
258
259
}
259
260
260
261
#[ test]
262
+ #[ ignore( cfg( windows) ) ] // FIXME #8811
261
263
fn read_eof_twice_ip4 ( ) {
262
264
do run_in_newsched_task {
263
265
let addr = next_test_ip4 ( ) ;
@@ -280,6 +282,7 @@ mod test {
280
282
}
281
283
282
284
#[ test]
285
+ #[ ignore( cfg( windows) ) ] // FIXME #8811
283
286
fn read_eof_twice_ip6 ( ) {
284
287
do run_in_newsched_task {
285
288
let addr = next_test_ip6 ( ) ;
@@ -302,6 +305,7 @@ mod test {
302
305
}
303
306
304
307
#[ test]
308
+ #[ ignore( cfg( windows) ) ] // FIXME #8811
305
309
fn write_close_ip4 ( ) {
306
310
do run_in_newsched_task {
307
311
let addr = next_test_ip4 ( ) ;
@@ -331,6 +335,7 @@ mod test {
331
335
}
332
336
333
337
#[ test]
338
+ #[ ignore( cfg( windows) ) ] // FIXME #8811
334
339
fn write_close_ip6 ( ) {
335
340
do run_in_newsched_task {
336
341
let addr = next_test_ip6 ( ) ;
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ mod test {
33
33
use super :: PathLike ;
34
34
35
35
#[ test]
36
+ #[ ignore( cfg( windows) ) ] // FIXME #8812
36
37
fn path_like_smoke_test ( ) {
37
38
let expected = "/home" ;
38
39
let path = Path ( expected) ;
Original file line number Diff line number Diff line change @@ -405,11 +405,13 @@ mod test {
405
405
}
406
406
407
407
#[test]
408
+ #[ignore(cfg(windows))] // FIXME #8814
408
409
fn file_test_full_simple() {
409
410
file_test_full_simple_impl();
410
411
}
411
412
412
413
#[test]
414
+ #[ignore(cfg(windows))] // FIXME #8814
413
415
fn file_test_full_simple_sync() {
414
416
file_test_full_simple_impl_sync();
415
417
}
Original file line number Diff line number Diff line change @@ -600,6 +600,7 @@ mod test {
600
600
}
601
601
602
602
#[test]
603
+ #[ignore(cfg(windows))] // FIXME #8815
603
604
fn listen_ip4() {
604
605
do run_in_bare_thread() {
605
606
static MAX: int = 10;
@@ -674,6 +675,7 @@ mod test {
674
675
}
675
676
676
677
#[test]
678
+ #[ignore(cfg(windows))] // FIXME #8815
677
679
fn listen_ip6() {
678
680
do run_in_bare_thread() {
679
681
static MAX: int = 10;
@@ -750,6 +752,7 @@ mod test {
750
752
}
751
753
752
754
#[test]
755
+ #[ignore(cfg(windows))] // FIXME #8815
753
756
fn udp_recv_ip4() {
754
757
do run_in_bare_thread() {
755
758
static MAX: int = 10;
@@ -810,6 +813,7 @@ mod test {
810
813
}
811
814
812
815
#[test]
816
+ #[ignore(cfg(windows))] // FIXME #8815
813
817
fn udp_recv_ip6() {
814
818
do run_in_bare_thread() {
815
819
static MAX: int = 10;
Original file line number Diff line number Diff line change @@ -1860,6 +1860,7 @@ fn test_read_read_read() {
1860
1860
}
1861
1861
1862
1862
#[ test]
1863
+ #[ ignore( cfg( windows) ) ] // FIXME #8816
1863
1864
fn test_udp_twice ( ) {
1864
1865
do run_in_newsched_task {
1865
1866
let server_addr = next_test_ip4 ( ) ;
@@ -1994,6 +1995,7 @@ fn file_test_uvio_full_simple_impl() {
1994
1995
}
1995
1996
1996
1997
#[ test]
1998
+ #[ ignore( cfg( windows) ) ] // FIXME #8816
1997
1999
fn file_test_uvio_full_simple ( ) {
1998
2000
do run_in_newsched_task {
1999
2001
file_test_uvio_full_simple_impl( ) ;
Original file line number Diff line number Diff line change @@ -286,6 +286,7 @@ fn handle_sanity_check() {
286
286
}
287
287
288
288
#[ test]
289
+ #[ ignore( cfg( windows) ) ] // FIXME #8817
289
290
#[ fixed_stack_segment]
290
291
#[ inline( never) ]
291
292
fn request_sanity_check ( ) {
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ mod test {
90
90
use libc;
91
91
92
92
#[ test]
93
+ #[ ignore( cfg( windows) ) ] // FIXME #8818
93
94
fn test_loading_cosine ( ) {
94
95
// The math library does not need to be loaded since it is already
95
96
// statically linked in
You can’t perform that action at this time.
0 commit comments