mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-37553: SendfileUsingSendTest tests timeout too short for Windows ARM32 (GH-14716)
This commit is contained in:
parent
40d2226a69
commit
52c8c09087
1 changed files with 2 additions and 1 deletions
|
@ -5769,7 +5769,8 @@ class SendfileUsingSendTest(ThreadedTCPSocketTest):
|
|||
FILESIZE = (10 * 1024 * 1024) # 10 MiB
|
||||
BUFSIZE = 8192
|
||||
FILEDATA = b""
|
||||
TIMEOUT = 2
|
||||
# bpo-37553: This is taking longer than 2 seconds on Windows ARM32 buildbot
|
||||
TIMEOUT = 10 if sys.platform == 'win32' and platform.machine() == 'ARM' else 2
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue