Skip to content

Commit 855e688

Browse files
authored
bpo-31904: Fix test_ftplib failures for VxWorks RTOS (GH-19447)
1 parent 5798f78 commit 855e688

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Lib/test/support/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@
8989
# bpo-37553: test_socket.SendfileUsingSendTest is taking longer than 2
9090
# seconds on Windows ARM32 buildbot
9191
LOOPBACK_TIMEOUT = 10
92+
elif sys.platform == 'vxworks':
93+
LOOPBACK_TIMEOUT = 10
9294

9395
# Timeout in seconds for network requests going to the Internet. The timeout is
9496
# short enough to prevent a test to wait for too long if the Internet request
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Increase LOOPBACK_TIMEOUT to 10 for VxWorks RTOS.

0 commit comments

Comments
 (0)