Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19703)
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.
*/
return ret;
}
+#endif
OPT_TEST_DECLARE_USAGE("provider config\n")
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;
}
"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"),
);