Skip to content
Closed
Changes from all commits
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
6 changes: 6 additions & 0 deletions Lib/test/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -6058,6 +6058,8 @@ def _testOffset(self):
self.assertEqual(sent, self.FILESIZE - 5000)
self.assertEqual(file.tell(), self.FILESIZE)

@unittest.skipIf(sys.platform.startswith('sunos'),
"pending resolution of issue 42237")
def testOffset(self):
conn = self.accept_conn()
data = self.recv_data(conn)
Expand All @@ -6078,6 +6080,8 @@ def _testCount(self):
self.assertEqual(sent, count)
self.assertEqual(file.tell(), count)

@unittest.skipIf(sys.platform.startswith('sunos'),
"pending resolution of issue 42237")
def testCount(self):
count = 5000007
conn = self.accept_conn()
Expand Down Expand Up @@ -6153,6 +6157,8 @@ def _testWithTimeout(self):
sent = meth(file)
self.assertEqual(sent, self.FILESIZE)

@unittest.skipIf(sys.platform.startswith('sunos'),
"pending resolution of issue 42237")
def testWithTimeout(self):
conn = self.accept_conn()
data = self.recv_data(conn)
Expand Down