]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC: Temporarily disable front-end API tests
authorHugo Landau <hlandau@openssl.org>
Thu, 17 Nov 2022 15:45:11 +0000 (15:45 +0000)
committerHugo Landau <hlandau@openssl.org>
Fri, 13 Jan 2023 13:20:16 +0000 (13:20 +0000)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)

test/quicapitest.c
test/recipes/80-test_ssl_new.t

index 896b7bc3a1285a04440338e7b4c0c5d837155ae4..ce1ee1490c2e3d224e0b030267dd1c466123f386 100644 (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;
 }
 
index 39690e55ef15770a8b0bc4dfb66b994eacb56ba8..7dcf203b156c9463320af32280cb2b378c7d2a48 100644 (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"),
 );