summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-23 16:16:50 +0200
committerMatt Caswell <matt@openssl.org>2023-10-25 09:35:31 +0100
commitd73299136ef85d83b221364201619e7342523ad7 (patch)
tree5d1fed0adf8f4cc57f54899650d7179a9c485a39
parent8b268541d9aabee51699aef22963407362830ef9 (diff)
quic_tserver_test: Raise the initial timeout limit
There were intermitten failures on the test occasionally and 1s initial limit might be too short. Fixes #22424 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22475)
-rw-r--r--test/quic_tserver_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/quic_tserver_test.c b/test/quic_tserver_test.c
index b2b09354bb..330827ab5a 100644
--- a/test/quic_tserver_test.c
+++ b/test/quic_tserver_test.c
@@ -73,7 +73,7 @@ static int do_test(int use_thread_assist, int use_fake_time, int use_inject)
int s_begin_write = 0;
OSSL_TIME start_time;
unsigned char alpn[] = { 8, 'o', 's', 's', 'l', 't', 'e', 's', 't' };
- size_t limit_ms = 1000;
+ size_t limit_ms = 10000;
#if defined(OPENSSL_NO_QUIC_THREAD_ASSIST)
if (use_thread_assist) {