Skip to content

Commit

Permalink
Raise the timeout in quic_client_test.c
Browse files Browse the repository at this point in the history
Recently the Coveralls CI run started failing
because it times out in this test.
Outside of Coveralls it runs fine so assuming that
this is caused by slow execution under Coveralls.

Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Hugo Landau <[email protected]>
(Merged from openssl#21844)
  • Loading branch information
t8m committed Aug 28, 2023
1 parent 84a0b1b commit 0f9caad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/quic_client_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static int test_quic_client(void)

for (;;) {
if (ossl_time_compare(ossl_time_subtract(ossl_time_now(), start_time),
ossl_ms2time(3000)) >= 0) {
ossl_ms2time(10000)) >= 0) {
TEST_error("timeout while attempting QUIC client test");
goto err;
}
Expand Down

0 comments on commit 0f9caad

Please sign in to comment.