File: 2001-riscv-relax-test-timeout.patch

package info (click to toggle)
uvloop 0.21.0%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,308 kB
  • sloc: python: 8,273; ansic: 108; makefile: 42
file content (24 lines) | stat: -rw-r--r-- 572 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: =?utf-8?q?Piotr_O=C5=BCarowski?= <piotr@debian.org>
Date: Sat, 14 Oct 2023 14:39:05 +0200
Subject: Relax timeout limit for riscv64 so tests could finish

Last-Update: 2022-11-08

Last-Update: 2022-11-08
---
 tests/test_unix.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_unix.py b/tests/test_unix.py
index 0d670e3..6c19a5c 100644
--- a/tests/test_unix.py
+++ b/tests/test_unix.py
@@ -10,7 +10,7 @@ import sys
 from uvloop import _testbase as tb
 
 
-SSL_HANDSHAKE_TIMEOUT = 15.0
+SSL_HANDSHAKE_TIMEOUT = 30.0
 
 
 class _TestUnix: