@@ -249,13 +249,11 @@ def test_invalid_call(self):
249249 with self .assertRaises (TypeError ):
250250 signal .set_wakeup_fd (signal .SIGINT , False )
251251
252- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
253252 def test_invalid_fd (self ):
254253 fd = os_helper .make_bad_fd ()
255254 self .assertRaises ((ValueError , OSError ),
256255 signal .set_wakeup_fd , fd )
257256
258- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
259257 @unittest .skipUnless (support .has_socket_support , "needs working sockets." )
260258 def test_invalid_socket (self ):
261259 sock = socket .socket ()
@@ -264,7 +262,6 @@ def test_invalid_socket(self):
264262 self .assertRaises ((ValueError , OSError ),
265263 signal .set_wakeup_fd , fd )
266264
267- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
268265 # Emscripten does not support fstat on pipes yet.
269266 # https://github.com/emscripten-core/emscripten/issues/16414
270267 @unittest .skipIf (support .is_emscripten , "Emscripten cannot fstat pipes." )
@@ -286,7 +283,6 @@ def test_set_wakeup_fd_result(self):
286283 self .assertEqual (signal .set_wakeup_fd (- 1 ), w2 )
287284 self .assertEqual (signal .set_wakeup_fd (- 1 ), - 1 )
288285
289- @unittest .expectedFailureIfWindows ("TODO: RUSTPYTHON" )
290286 @unittest .skipIf (support .is_emscripten , "Emscripten cannot fstat pipes." )
291287 @unittest .skipUnless (support .has_socket_support , "needs working sockets." )
292288 def test_set_wakeup_fd_socket_result (self ):
0 commit comments