From ad4af6dfca8344516bb658b1745a530635af9433 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 28 Sep 2023 13:59:45 +0100 Subject: [PATCH] Fix timeouts in the quic_multistream test script 13 Script 13 is a stress test which can timeout on some low powered platforms or with some options that significantly slow performance. We increase the timeout. Reviewed-by: Paul Dale Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/22214) --- test/quic_multistream_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/quic_multistream_test.c b/test/quic_multistream_test.c index 2ad4ef292e2..58b0831ebb9 100644 --- a/test/quic_multistream_test.c +++ b/test/quic_multistream_test.c @@ -1053,7 +1053,7 @@ static int run_script_worker(struct helper *h, const struct script_op *script, first = 0; offset = 0; op_start_time = ossl_time_now(); - op_deadline = ossl_time_add(op_start_time, ossl_ms2time(8000)); + op_deadline = ossl_time_add(op_start_time, ossl_ms2time(60000)); } if (!TEST_int_le(ossl_time_compare(ossl_time_now(), op_deadline), 0)) { -- 2.47.2