Update On Mon Apr 7 20:36:19 CEST 2025

This commit is contained in:
github-action[bot]
2025-04-07 20:36:19 +02:00
parent abfa3f6b2c
commit cc70b50b0e
48 changed files with 562 additions and 245 deletions

View File

@@ -195,6 +195,12 @@ def test_naive_once(proxy, *args, **kwargs):
def test_naive(label, proxy, *args, **kwargs):
RETRIES = 5
result = None
if argv.target_cpu == 'arm' and not label.startswith('Default'):
# Arm tests are too slow in qemu-user
# due to https://www.openwall.com/lists/musl/2017/06/15/9
print('** SKIP TEST:', label, end='\n\n')
return
for i in range(RETRIES):
result = test_naive_once(proxy, *args, **kwargs)
if result == 'Failed to listen':