]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
quic_tserver_test: Raise the initial timeout limit
authorTomas Mraz <tomas@openssl.org>
Mon, 23 Oct 2023 14:16:50 +0000 (16:16 +0200)
committerMatt Caswell <matt@openssl.org>
Wed, 25 Oct 2023 08:35:31 +0000 (09:35 +0100)
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)

test/quic_tserver_test.c

index b2b09354bb6c6261a0f39663cdd6cd80a94a2367..330827ab5ae195d3a1a8a934e6dad25925af407f 100644 (file)
@@ -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) {