From: Matt Caswell Date: Thu, 28 Sep 2023 12:59:45 +0000 (+0100) Subject: Fix timeouts in the quic_multistream test script 13 X-Git-Tag: openssl-3.2.0-beta1~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad4af6dfca8344516bb658b1745a530635af9433;p=thirdparty%2Fopenssl.git 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) --- 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)) {