@@ -123,6 +123,7 @@ async fn test_tcp(client: RemoteNetworkingClient, _server: RemoteNetworkingServe
123
123
}
124
124
125
125
#[ cfg( feature = "remote" ) ]
126
+ #[ cfg_attr( windows, ignore) ]
126
127
#[ traced_test]
127
128
#[ tokio:: test( flavor = "multi_thread" ) ]
128
129
async fn test_tcp_with_mpsc ( ) {
@@ -131,6 +132,7 @@ async fn test_tcp_with_mpsc() {
131
132
}
132
133
133
134
#[ cfg( feature = "remote" ) ]
135
+ #[ cfg_attr( windows, ignore) ]
134
136
#[ traced_test]
135
137
#[ tokio:: test( flavor = "multi_thread" ) ]
136
138
async fn test_tcp_with_small_pipe_using_bincode ( ) {
@@ -139,6 +141,7 @@ async fn test_tcp_with_small_pipe_using_bincode() {
139
141
}
140
142
141
143
#[ cfg( feature = "remote" ) ]
144
+ #[ cfg_attr( windows, ignore) ]
142
145
#[ traced_test]
143
146
#[ tokio:: test( flavor = "multi_thread" ) ]
144
147
async fn test_tcp_with_large_pipe_using_bincode ( ) {
@@ -148,6 +151,7 @@ async fn test_tcp_with_large_pipe_using_bincode() {
148
151
149
152
#[ cfg( feature = "remote" ) ]
150
153
#[ cfg( feature = "json" ) ]
154
+ #[ cfg_attr( windows, ignore) ]
151
155
#[ traced_test]
152
156
#[ tokio:: test( flavor = "multi_thread" ) ]
153
157
async fn test_tcp_with_small_pipe_using_json ( ) {
@@ -157,6 +161,7 @@ async fn test_tcp_with_small_pipe_using_json() {
157
161
158
162
#[ cfg( feature = "remote" ) ]
159
163
#[ cfg( feature = "json" ) ]
164
+ #[ cfg_attr( windows, ignore) ]
160
165
#[ traced_test]
161
166
#[ tokio:: test( flavor = "multi_thread" ) ]
162
167
async fn test_tcp_with_large_pipe_json_using_json ( ) {
@@ -166,6 +171,7 @@ async fn test_tcp_with_large_pipe_json_using_json() {
166
171
167
172
#[ cfg( feature = "remote" ) ]
168
173
#[ cfg( feature = "messagepack" ) ]
174
+ #[ cfg_attr( windows, ignore) ]
169
175
#[ traced_test]
170
176
#[ tokio:: test( flavor = "multi_thread" ) ]
171
177
async fn test_tcp_with_small_pipe_using_messagepack ( ) {
@@ -175,6 +181,7 @@ async fn test_tcp_with_small_pipe_using_messagepack() {
175
181
176
182
#[ cfg( feature = "remote" ) ]
177
183
#[ cfg( feature = "messagepack" ) ]
184
+ #[ cfg_attr( windows, ignore) ]
178
185
#[ traced_test]
179
186
#[ tokio:: test( flavor = "multi_thread" ) ]
180
187
async fn test_tcp_with_large_pipe_json_using_messagepack ( ) {
@@ -184,6 +191,7 @@ async fn test_tcp_with_large_pipe_json_using_messagepack() {
184
191
185
192
#[ cfg( feature = "remote" ) ]
186
193
#[ cfg( feature = "cbor" ) ]
194
+ #[ cfg_attr( windows, ignore) ]
187
195
#[ traced_test]
188
196
#[ tokio:: test( flavor = "multi_thread" ) ]
189
197
async fn test_tcp_with_small_pipe_using_cbor ( ) {
@@ -193,13 +201,15 @@ async fn test_tcp_with_small_pipe_using_cbor() {
193
201
194
202
#[ cfg( feature = "remote" ) ]
195
203
#[ cfg( feature = "cbor" ) ]
204
+ #[ cfg_attr( windows, ignore) ]
196
205
#[ traced_test]
197
206
#[ tokio:: test( flavor = "multi_thread" ) ]
198
207
async fn test_tcp_with_large_pipe_json_using_cbor ( ) {
199
208
let ( client, server) = setup_pipe ( 1024000 , FrameSerializationFormat :: Cbor ) . await ;
200
209
test_tcp ( client, server) . await
201
210
}
202
211
212
+ #[ cfg_attr( windows, ignore) ]
203
213
#[ traced_test]
204
214
#[ tokio:: test]
205
215
async fn test_google_poll ( ) {
@@ -290,6 +300,7 @@ async fn test_google_poll() {
290
300
tracing:: info!( "done" ) ;
291
301
}
292
302
303
+ #[ cfg_attr( windows, ignore) ]
293
304
#[ traced_test]
294
305
#[ tokio:: test]
295
306
async fn test_google_epoll ( ) {
0 commit comments