@@ -17,7 +17,7 @@ nonpoison_and_poison_unwrap_test!(
17
17
}
18
18
) ;
19
19
20
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
20
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
21
21
nonpoison_and_poison_unwrap_test ! (
22
22
name: notify_one,
23
23
test_body: {
@@ -38,7 +38,7 @@ nonpoison_and_poison_unwrap_test!(
38
38
}
39
39
) ;
40
40
41
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
41
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
42
42
nonpoison_and_poison_unwrap_test ! (
43
43
name: notify_all,
44
44
test_body: {
@@ -79,7 +79,7 @@ nonpoison_and_poison_unwrap_test!(
79
79
}
80
80
) ;
81
81
82
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
82
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
83
83
nonpoison_and_poison_unwrap_test ! (
84
84
name: test_mutex_arc_condvar,
85
85
test_body: {
@@ -116,7 +116,7 @@ nonpoison_and_poison_unwrap_test!(
116
116
}
117
117
) ;
118
118
119
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
119
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
120
120
nonpoison_and_poison_unwrap_test ! (
121
121
name: wait_while,
122
122
test_body: {
@@ -141,7 +141,7 @@ nonpoison_and_poison_unwrap_test!(
141
141
}
142
142
) ;
143
143
144
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
144
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
145
145
nonpoison_and_poison_unwrap_test ! (
146
146
name: wait_timeout_wait,
147
147
test_body: {
@@ -164,7 +164,7 @@ nonpoison_and_poison_unwrap_test!(
164
164
}
165
165
) ;
166
166
167
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
167
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
168
168
nonpoison_and_poison_unwrap_test ! (
169
169
name: wait_timeout_while_wait,
170
170
test_body: {
@@ -180,7 +180,7 @@ nonpoison_and_poison_unwrap_test!(
180
180
}
181
181
) ;
182
182
183
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
183
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
184
184
nonpoison_and_poison_unwrap_test ! (
185
185
name: wait_timeout_while_instant_satisfy,
186
186
test_body: {
@@ -197,7 +197,7 @@ nonpoison_and_poison_unwrap_test!(
197
197
}
198
198
) ;
199
199
200
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
200
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
201
201
nonpoison_and_poison_unwrap_test ! (
202
202
name: wait_timeout_while_wake,
203
203
test_body: {
@@ -226,7 +226,7 @@ nonpoison_and_poison_unwrap_test!(
226
226
}
227
227
) ;
228
228
229
- #[ cfg_attr ( any( target_os = "emscripten" , target_os = "wasi" ) , ignore ) ] // no threads
229
+ #[ cfg ( not ( any( target_os = "emscripten" , target_os = "wasi" ) ) ) ] // No threads.
230
230
nonpoison_and_poison_unwrap_test ! (
231
231
name: wait_timeout_wake,
232
232
test_body: {
0 commit comments