From 52c8c090870c4e45dc48d1991d7ef7de2e40b2a8 Mon Sep 17 00:00:00 2001 From: Paul Monson Date: Sun, 14 Jul 2019 01:30:28 -0700 Subject: [PATCH] bpo-37553: SendfileUsingSendTest tests timeout too short for Windows ARM32 (GH-14716) --- Lib/test/test_socket.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index e92f871880..2705eff479 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -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): -- 2.40.0