summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-11-17 15:45:11 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:16 +0000
commitb940f943a245ae5a5ea6f62417a21fe05933e973 (patch)
tree96dd2fe585c7e5e53efd3722af26adc96f6dfe89 /test
parent6a8001986265ce9ce91469b6fa735cf95dd7b4bf (diff)
downloadopenssl-new-b940f943a245ae5a5ea6f62417a21fe05933e973.tar.gz
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)
Diffstat (limited to 'test')
-rw-r--r--test/quicapitest.c7
-rw-r--r--test/recipes/80-test_ssl_new.t3
2 files changed, 9 insertions, 1 deletions
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"),
);