bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)
This commit is contained in:
parent
5798f78777
commit
855e68855e
|
@ -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
|
# bpo-37553: test_socket.SendfileUsingSendTest is taking longer than 2
|
||||||
# seconds on Windows ARM32 buildbot
|
# seconds on Windows ARM32 buildbot
|
||||||
LOOPBACK_TIMEOUT = 10
|
LOOPBACK_TIMEOUT = 10
|
||||||
|
elif sys.platform == 'vxworks':
|
||||||
|
LOOPBACK_TIMEOUT = 10
|
||||||
|
|
||||||
# Timeout in seconds for network requests going to the Internet. The timeout is
|
# 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
|
# short enough to prevent a test to wait for too long if the Internet request
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Increase LOOPBACK_TIMEOUT to 10 for VxWorks RTOS.
|
Loading…
Reference in New Issue