Commit 962d4b6b62 for openssl.org
commit 962d4b6b6227930f1017261d249c0fac421b5cbd
Author: Milan Broz <gmazyland@gmail.com>
Date: Tue Mar 17 14:09:47 2026 +0100
test: Increase timeout for QUIC multistream test
I can regularly hit timeout on Windows for QUIC multistream test.
While increasing is not the best solution, it eliminates many
failures during testing. This timeout only applies in specific
situation, so run time should not be actually used often.
Signed-off-by: Milan Broz <gmazyland@gmail.com>
Reviewed-by: Saša NedvÄ›dický <sashan@openssl.org>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
MergeDate: Thu Mar 19 09:17:57 2026
(Merged from https://github.com/openssl/openssl/pull/30461)
diff --git a/test/quic_multistream_test.c b/test/quic_multistream_test.c
index 9ae95e379b..e59cd0be87 100644
--- a/test/quic_multistream_test.c
+++ b/test/quic_multistream_test.c
@@ -1098,7 +1098,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(60000));
+ op_deadline = ossl_time_add(op_start_time, ossl_ms2time(180000));
}
if (!TEST_int_le(ossl_time_compare(ossl_time_now(), op_deadline), 0)) {