From b940f943a245ae5a5ea6f62417a21fe05933e973 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Thu, 17 Nov 2022 15:45:11 +0000 Subject: [PATCH] QUIC: Temporarily disable front-end API tests Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- test/quicapitest.c | 7 +++++++ test/recipes/80-test_ssl_new.t | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/test/quicapitest.c b/test/quicapitest.c index 896b7bc3a1..ce1ee1490c 100644 --- a/test/quicapitest.c +++ b/test/quicapitest.c @@ -22,6 +22,9 @@ static OSSL_PROVIDER *defctxnull = NULL; static int is_fips = 0; +#if 0 +/* TODO(QUIC): Temporarily disabled during front-end I/O API finalization. */ + /* * Test that we read what we've written. */ @@ -71,6 +74,7 @@ static int test_quic_write_read(void) return ret; } +#endif OPT_TEST_DECLARE_USAGE("provider config\n") @@ -117,7 +121,10 @@ int setup_tests(void) if (strcmp(modulename, "fips") == 0) is_fips = 1; + /* TODO(QUIC): Temporarily disabled during front-end I/O API finalization. */ +#if 0 ADD_TEST(test_quic_write_read); +#endif return 1; } diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index 39690e55ef..7dcf203b15 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -128,7 +128,8 @@ my %skip = ( "25-cipher.cnf" => disabled("ec") || disabled("tls1_2"), "26-tls13_client_auth.cnf" => disabled("tls1_3") || ($no_ec && $no_dh), "29-dtls-sctp-label-bug.cnf" => disabled("sctp") || disabled("sock"), - "31-quic.cnf" => $no_quic || $no_ec, + # TODO(QUIC): Temporarily disabled during finalization of front-end API. + "31-quic.cnf" => 1 || $no_quic || $no_ec, "32-compressed-certificate.cnf" => disabled("comp") || disabled("tls1_3"), );