aboutsummaryrefslogtreecommitdiffstats
path: root/test/packettest.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-11-17 16:03:00 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:16 +0000
commit6292519cd8102983e9924b6b0d3f298ac5f93e80 (patch)
tree4165c88c36ad9f44df8f5e8526054cd93daccca8 /test/packettest.c
parent44019a69c4ae305f1f753f836c4d06ac63a8c6f3 (diff)
downloadopenssl-6292519cd8102983e9924b6b0d3f298ac5f93e80.tar.gz
QUIC: Enable building with QUIC support disabled
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/packettest.c')
-rw-r--r--test/packettest.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/packettest.c b/test/packettest.c
index 68b6d679b9..e1e7a0859d 100644
--- a/test/packettest.c
+++ b/test/packettest.c
@@ -465,6 +465,8 @@ static int test_PACKET_as_length_prefixed_2(void)
return 1;
}
+#ifndef OPENSSL_NO_QUIC
+
static int test_PACKET_get_quic_vlint(void)
{
struct quic_test_case {
@@ -569,6 +571,8 @@ static int test_PACKET_get_quic_length_prefixed(void)
return 1;
}
+#endif
+
int setup_tests(void)
{
unsigned int i;
@@ -599,7 +603,9 @@ int setup_tests(void)
ADD_TEST(test_PACKET_get_length_prefixed_3);
ADD_TEST(test_PACKET_as_length_prefixed_1);
ADD_TEST(test_PACKET_as_length_prefixed_2);
+#ifndef OPENSSL_NO_QUIC
ADD_TEST(test_PACKET_get_quic_vlint);
ADD_TEST(test_PACKET_get_quic_length_prefixed);
+#endif
return 1;
}