Skip to content

Commit 52c8c09

Browse files
paulmonzooba
authored andcommitted
bpo-37553: SendfileUsingSendTest tests timeout too short for Windows ARM32 (GH-14716)
1 parent 40d2226 commit 52c8c09

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_socket.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5769,7 +5769,8 @@ class SendfileUsingSendTest(ThreadedTCPSocketTest):
57695769
FILESIZE = (10 * 1024 * 1024) # 10 MiB
57705770
BUFSIZE = 8192
57715771
FILEDATA = b""
5772-
TIMEOUT = 2
5772+
# bpo-37553: This is taking longer than 2 seconds on Windows ARM32 buildbot
5773+
TIMEOUT = 10 if sys.platform == 'win32' and platform.machine() == 'ARM' else 2
57735774

57745775
@classmethod
57755776
def setUpClass(cls):

0 commit comments

Comments
 (0)