From 0f9caad5b95e901b87fe45cf85c9582071ca0b23 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Fri, 25 Aug 2023 14:24:07 +0200 Subject: [PATCH] Raise the timeout in quic_client_test.c 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 Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/21844) --- test/quic_client_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/quic_client_test.c b/test/quic_client_test.c index e3fe678edd..5defd65939 100644 --- a/test/quic_client_test.c +++ b/test/quic_client_test.c @@ -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; }