Skip to content

Commit

Permalink
Fix timeouts in the quic_multistream test script 13
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mattcaswell committed Sep 28, 2023
1 parent 7f5b29c commit 04e3ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/quic_multistream_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 04e3ba8

Please sign in to comment.