Skip to content

Commit 21f24cd

Browse files
authored
impl more winapi (#6529)
1 parent 40acd55 commit 21f24cd

File tree

2 files changed

+438
-15
lines changed

2 files changed

+438
-15
lines changed

Lib/test/test_winapi.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -77,34 +77,22 @@ def _events_waitany_test(self, n):
7777
evts[i] = old_evt
7878

7979

80-
# TODO: RUSTPYTHON
81-
@unittest.expectedFailure
8280
def test_few_events_waitall(self):
8381
self._events_waitall_test(16)
8482

85-
# TODO: RUSTPYTHON
86-
@unittest.expectedFailure
8783
def test_many_events_waitall(self):
8884
self._events_waitall_test(256)
8985

90-
# TODO: RUSTPYTHON
91-
@unittest.expectedFailure
9286
def test_max_events_waitall(self):
9387
self._events_waitall_test(MAXIMUM_BATCHED_WAIT_OBJECTS)
9488

9589

96-
# TODO: RUSTPYTHON
97-
@unittest.expectedFailure
9890
def test_few_events_waitany(self):
9991
self._events_waitany_test(16)
10092

101-
# TODO: RUSTPYTHON
102-
@unittest.expectedFailure
10393
def test_many_events_waitany(self):
10494
self._events_waitany_test(256)
10595

106-
# TODO: RUSTPYTHON
107-
@unittest.expectedFailure
10896
def test_max_events_waitany(self):
10997
self._events_waitany_test(MAXIMUM_BATCHED_WAIT_OBJECTS)
11098

@@ -140,8 +128,6 @@ def test_getshortpathname(self):
140128
# Should contain "PROGRA~" but we can't predict the number
141129
self.assertIsNotNone(re.match(r".\:\\PROGRA~\d", actual.upper()), actual)
142130

143-
# TODO: RUSTPYTHON
144-
@unittest.expectedFailure
145131
def test_namedpipe(self):
146132
pipe_name = rf"\\.\pipe\LOCAL\{os_helper.TESTFN}"
147133

0 commit comments

Comments
 (0)