bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)

This commit is contained in:
pxinwr 2020-07-27 14:17:47 +08:00 committed by GitHub
parent 5798f78777
commit 855e68855e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -89,6 +89,8 @@ if sys.platform == 'win32' and ' 32 bit (ARM)' in sys.version:
# bpo-37553: test_socket.SendfileUsingSendTest is taking longer than 2
# seconds on Windows ARM32 buildbot
LOOPBACK_TIMEOUT = 10
elif sys.platform == 'vxworks':
LOOPBACK_TIMEOUT = 10
# Timeout in seconds for network requests going to the Internet. The timeout is
# short enough to prevent a test to wait for too long if the Internet request

View File

@ -0,0 +1 @@
Increase LOOPBACK_TIMEOUT to 10 for VxWorks RTOS.