aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2026-04-26 10:09:28 +0200
committerTheo Buehler <tb@openbsd.org>2026-04-26 10:09:28 +0200
commitb56b582a049d194a14064b36212f81645deeec22 (patch)
tree526bd696a7f30f7aeb327ea8e81b390caaf21546
parent00af7aededef2d32034cefaae9e23d8f3890b56a (diff)
parent7fc4c0cc78e57b0146bd5f80ce0c4d50013d5974 (diff)
downloadportable-b56b582a049d194a14064b36212f81645deeec22.tar.gz
portable-b56b582a049d194a14064b36212f81645deeec22.tar.bz2
portable-b56b582a049d194a14064b36212f81645deeec22.zip
Land #1267 - wire up dtls wire test
-rw-r--r--tests/CMakeLists.txt5
-rw-r--r--tests/Makefile.am5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index eaf4ed1..a2c6192 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -415,6 +415,11 @@ add_platform_test(dsatest dsatest)
415# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}") 415# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}")
416# endif() 416# endif()
417 417
418# dtls_wire_test
419add_executable(dtls_wire_test dtls_wire_test.c)
420target_link_libraries(dtls_wire_test ${OPENSSL_TEST_LIBS})
421add_platform_test(dtls_wire_test dtls_wire_test)
422
418# ecc_cdh 423# ecc_cdh
419add_executable(ecc_cdh ecc_cdh.c) 424add_executable(ecc_cdh ecc_cdh.c)
420target_link_libraries(ecc_cdh ${OPENSSL_TEST_LIBS}) 425target_link_libraries(ecc_cdh ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 22e3dee..d49b431 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -431,6 +431,11 @@ dsatest_SOURCES = dsatest.c
431#endif 431#endif
432#EXTRA_DIST += dtlstest.sh 432#EXTRA_DIST += dtlstest.sh
433 433
434# dtls_wire_test
435TESTS += dtls_wire_test
436check_PROGRAMS += dtls_wire_test
437dtls_wire_test_SOURCES = dtls_wire_test.c
438
434# ecc_cdh 439# ecc_cdh
435TESTS += ecc_cdh 440TESTS += ecc_cdh
436check_PROGRAMS += ecc_cdh 441check_PROGRAMS += ecc_cdh