aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRandall S. Becker <randall.becker@nexbridge.ca>2024-05-22 23:34:45 +0000
committerTomas Mraz <tomas@openssl.org>2024-06-04 14:43:45 +0200
commit0e2567d7293d3204de66acca0ed55bda4f0c0768 (patch)
tree1c5b15ac22782ea66950aeb0c2334ee368363b0e /test
parentae20c423f9b86956267ea82bd678179e9d648bad (diff)
downloadopenssl-0e2567d7293d3204de66acca0ed55bda4f0c0768.zip
openssl-0e2567d7293d3204de66acca0ed55bda4f0c0768.tar.gz
openssl-0e2567d7293d3204de66acca0ed55bda4f0c0768.tar.bz2
Disable 70-test_quic_multistream.t when building with PUT threads.
The test recipe includes a TEST_skip when OpenSSL is built with _PUT_MODEL_ based on design assumptions for QUIC and incompatibility with PUT wrapper methods. Fixes: #24442 Fixes: #24431 Signed-off-by: Randall S. Becker <randall.becker@nexbridge.ca> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24468)
Diffstat (limited to 'test')
-rw-r--r--test/quic_multistream_test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/quic_multistream_test.c b/test/quic_multistream_test.c
index fb2daac..c74488e 100644
--- a/test/quic_multistream_test.c
+++ b/test/quic_multistream_test.c
@@ -5923,6 +5923,10 @@ OPT_TEST_DECLARE_USAGE("certfile privkeyfile\n")
int setup_tests(void)
{
+#if defined (_PUT_MODEL_)
+ return TEST_skip("QUIC is not supported by this build");
+#endif
+
if (!test_skip_common_options()) {
TEST_error("Error parsing test options\n");
return 0;