Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mark erroring test on Windows
  • Loading branch information
fanninpm committed Jul 5, 2022
commit b39263db3bf87de862b9d28adcb20aec1ffc272c
2 changes: 2 additions & 0 deletions Lib/test/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -1389,6 +1389,8 @@ def test_sock_ioctl(self):
@unittest.skipUnless(os.name == "nt", "Windows specific")
@unittest.skipUnless(hasattr(socket, 'SIO_LOOPBACK_FAST_PATH'),
'Loopback fast path support required for this test')
# TODO: RUSTPYTHON, AttributeError: 'socket' object has no attribute 'ioctl'
@unittest.expectedFailure
def test_sio_loopback_fast_path(self):
s = socket.socket()
self.addCleanup(s.close)
Expand Down