WIP: integrate QUIC session test into the codebase

This commit is contained in:
Artem Boldariev
2025-01-22 15:27:15 +02:00
parent 681dd90ee6
commit 8e80d9d8f5

View File

@@ -149,6 +149,7 @@ if HAVE_LIBNGTCP2
check_PROGRAMS += \
ngtcp2_integration_test \
quic_session_test \
quic_tls_test
ngtcp2_integration_test_CPPFLAGS = \
@@ -163,6 +164,18 @@ ngtcp2_integration_test_LDADD = \
ngtcp2_integration_test_SOURCES = \
ngtcp2_integration_test.c
quic_session_test_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(LIBNGTCP2_CFLAGS) \
$(OPENSSL_CFLAGS)
quic_session_test_LDADD = \
$(LDADD) \
$(LIBNGTCP2_LIBS)
quic_session_test_SOURCES = \
quic_session_test.c
quic_tls_test_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(LIBNGTCP2_CFLAGS) \