@@ -57,6 +57,7 @@ fn connect_timeout_error() {
57
57
}
58
58
59
59
#[ test]
60
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
60
61
fn listen_localhost ( ) {
61
62
let socket_addr = next_test_ip4 ( ) ;
62
63
let listener = t ! ( TcpListener :: bind( & socket_addr) ) ;
@@ -73,6 +74,7 @@ fn listen_localhost() {
73
74
}
74
75
75
76
#[ test]
77
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
76
78
fn connect_loopback ( ) {
77
79
each_ip ( & mut |addr| {
78
80
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -94,6 +96,7 @@ fn connect_loopback() {
94
96
}
95
97
96
98
#[ test]
99
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
97
100
fn smoke_test ( ) {
98
101
each_ip ( & mut |addr| {
99
102
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -114,6 +117,7 @@ fn smoke_test() {
114
117
}
115
118
116
119
#[ test]
120
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
117
121
fn read_eof ( ) {
118
122
each_ip ( & mut |addr| {
119
123
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -133,6 +137,7 @@ fn read_eof() {
133
137
}
134
138
135
139
#[ test]
140
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
136
141
fn write_close ( ) {
137
142
each_ip ( & mut |addr| {
138
143
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -161,6 +166,7 @@ fn write_close() {
161
166
}
162
167
163
168
#[ test]
169
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
164
170
fn multiple_connect_serial ( ) {
165
171
each_ip ( & mut |addr| {
166
172
let max = 10 ;
@@ -183,6 +189,7 @@ fn multiple_connect_serial() {
183
189
}
184
190
185
191
#[ test]
192
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
186
193
fn multiple_connect_interleaved_greedy_schedule ( ) {
187
194
const MAX : usize = 10 ;
188
195
each_ip ( & mut |addr| {
@@ -220,6 +227,7 @@ fn multiple_connect_interleaved_greedy_schedule() {
220
227
}
221
228
222
229
#[ test]
230
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
223
231
fn multiple_connect_interleaved_lazy_schedule ( ) {
224
232
const MAX : usize = 10 ;
225
233
each_ip ( & mut |addr| {
@@ -255,6 +263,7 @@ fn multiple_connect_interleaved_lazy_schedule() {
255
263
}
256
264
257
265
#[ test]
266
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
258
267
fn socket_and_peer_name ( ) {
259
268
each_ip ( & mut |addr| {
260
269
let listener = t ! ( TcpListener :: bind( & addr) ) ;
@@ -270,6 +279,7 @@ fn socket_and_peer_name() {
270
279
}
271
280
272
281
#[ test]
282
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
273
283
fn partial_read ( ) {
274
284
each_ip ( & mut |addr| {
275
285
let ( tx, rx) = channel ( ) ;
@@ -291,6 +301,7 @@ fn partial_read() {
291
301
}
292
302
293
303
#[ test]
304
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
294
305
fn read_buf ( ) {
295
306
each_ip ( & mut |addr| {
296
307
let srv = t ! ( TcpListener :: bind( & addr) ) ;
@@ -389,6 +400,7 @@ fn double_bind() {
389
400
}
390
401
391
402
#[ test]
403
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
392
404
fn tcp_clone_smoke ( ) {
393
405
each_ip ( & mut |addr| {
394
406
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -420,6 +432,7 @@ fn tcp_clone_smoke() {
420
432
}
421
433
422
434
#[ test]
435
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
423
436
fn tcp_clone_two_read ( ) {
424
437
each_ip ( & mut |addr| {
425
438
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -454,6 +467,7 @@ fn tcp_clone_two_read() {
454
467
}
455
468
456
469
#[ test]
470
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
457
471
fn tcp_clone_two_write ( ) {
458
472
each_ip ( & mut |addr| {
459
473
let acceptor = t ! ( TcpListener :: bind( & addr) ) ;
@@ -483,6 +497,7 @@ fn tcp_clone_two_write() {
483
497
#[ test]
484
498
// FIXME: https://github.com/fortanix/rust-sgx/issues/110
485
499
#[ cfg_attr( target_env = "sgx" , ignore) ]
500
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
486
501
fn shutdown_smoke ( ) {
487
502
each_ip ( & mut |addr| {
488
503
let a = t ! ( TcpListener :: bind( & addr) ) ;
@@ -505,6 +520,7 @@ fn shutdown_smoke() {
505
520
#[ test]
506
521
// FIXME: https://github.com/fortanix/rust-sgx/issues/110
507
522
#[ cfg_attr( target_env = "sgx" , ignore) ]
523
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
508
524
fn close_readwrite_smoke ( ) {
509
525
each_ip ( & mut |addr| {
510
526
let a = t ! ( TcpListener :: bind( & addr) ) ;
@@ -547,6 +563,7 @@ fn close_readwrite_smoke() {
547
563
#[ cfg_attr( target_env = "sgx" , ignore) ]
548
564
// On windows, shutdown will not wake up blocking I/O operations.
549
565
#[ cfg_attr( windows, ignore) ]
566
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
550
567
fn close_read_wakes_up ( ) {
551
568
each_ip ( & mut |addr| {
552
569
let listener = t ! ( TcpListener :: bind( & addr) ) ;
@@ -574,6 +591,7 @@ fn close_read_wakes_up() {
574
591
}
575
592
576
593
#[ test]
594
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
577
595
fn clone_while_reading ( ) {
578
596
each_ip ( & mut |addr| {
579
597
let accept = t ! ( TcpListener :: bind( & addr) ) ;
@@ -614,6 +632,7 @@ fn clone_while_reading() {
614
632
}
615
633
616
634
#[ test]
635
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
617
636
fn clone_accept_smoke ( ) {
618
637
each_ip ( & mut |addr| {
619
638
let a = t ! ( TcpListener :: bind( & addr) ) ;
@@ -632,6 +651,7 @@ fn clone_accept_smoke() {
632
651
}
633
652
634
653
#[ test]
654
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
635
655
fn clone_accept_concurrent ( ) {
636
656
each_ip ( & mut |addr| {
637
657
let a = t ! ( TcpListener :: bind( & addr) ) ;
@@ -670,10 +690,10 @@ fn debug() {
670
690
addr. to_string ( )
671
691
}
672
692
693
+ #[ cfg( any( unix, target_os = "wasi" ) ) ]
694
+ use crate :: os:: fd:: AsRawFd ;
673
695
#[ cfg( target_env = "sgx" ) ]
674
696
use crate :: os:: fortanix_sgx:: io:: AsRawFd ;
675
- #[ cfg( unix) ]
676
- use crate :: os:: unix:: io:: AsRawFd ;
677
697
#[ cfg( not( windows) ) ]
678
698
fn render_inner ( addr : & dyn AsRawFd ) -> impl fmt:: Debug {
679
699
addr. as_raw_fd ( )
@@ -714,6 +734,7 @@ fn debug() {
714
734
ignore
715
735
) ]
716
736
#[ cfg_attr( target_env = "sgx" , ignore) ] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
737
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // timeout not supported
717
738
#[ test]
718
739
fn timeouts ( ) {
719
740
let addr = next_test_ip4 ( ) ;
@@ -742,6 +763,7 @@ fn timeouts() {
742
763
743
764
#[ test]
744
765
#[ cfg_attr( target_env = "sgx" , ignore) ] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
766
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // timeout not supported
745
767
fn test_read_timeout ( ) {
746
768
let addr = next_test_ip4 ( ) ;
747
769
let listener = t ! ( TcpListener :: bind( & addr) ) ;
@@ -763,6 +785,7 @@ fn test_read_timeout() {
763
785
764
786
#[ test]
765
787
#[ cfg_attr( target_env = "sgx" , ignore) ] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
788
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // timeout not supported
766
789
fn test_read_with_timeout ( ) {
767
790
let addr = next_test_ip4 ( ) ;
768
791
let listener = t ! ( TcpListener :: bind( & addr) ) ;
@@ -810,6 +833,7 @@ fn test_timeout_zero_duration() {
810
833
811
834
#[ test]
812
835
#[ cfg_attr( target_env = "sgx" , ignore) ]
836
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // linger not supported
813
837
fn linger ( ) {
814
838
let addr = next_test_ip4 ( ) ;
815
839
let _listener = t ! ( TcpListener :: bind( & addr) ) ;
@@ -879,6 +903,7 @@ fn set_nonblocking() {
879
903
880
904
#[ test]
881
905
#[ cfg_attr( target_env = "sgx" , ignore) ] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
906
+ #[ cfg_attr( target_os = "wasi" , ignore) ] // no threads
882
907
fn peek ( ) {
883
908
each_ip ( & mut |addr| {
884
909
let ( txdone, rxdone) = channel ( ) ;
0 commit comments