]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Raise the timeout in quic_client_test.c
authorTomas Mraz <tomas@openssl.org>
Fri, 25 Aug 2023 12:24:07 +0000 (14:24 +0200)
committerTomas Mraz <tomas@openssl.org>
Mon, 28 Aug 2023 08:02:23 +0000 (10:02 +0200)
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 <matt@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21844)

test/quic_client_test.c

index e3fe678edd5283fdced44542986b436afc0dbeff..5defd659393109918bade0e28281e246170f5246 100644 (file)
@@ -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;
         }