QUIC: Temporarily disable front-end API tests

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)
This commit is contained in:
Hugo Landau 2022-11-17 15:45:11 +00:00
parent 6a80019862
commit b940f943a2
2 changed files with 9 additions and 1 deletions

View File

@ -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;
}

View File

@ -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"),
);