Skip to content

Commit b56b582

Browse files
committed
Land #1267 - wire up dtls wire test
2 parents 00af7ae + 7fc4c0c commit b56b582

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

tests/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,11 @@ add_platform_test(dsatest dsatest)
415415
# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}")
416416
# endif()
417417
418+
# dtls_wire_test
419+
add_executable(dtls_wire_test dtls_wire_test.c)
420+
target_link_libraries(dtls_wire_test ${OPENSSL_TEST_LIBS})
421+
add_platform_test(dtls_wire_test dtls_wire_test)
422+
418423
# ecc_cdh
419424
add_executable(ecc_cdh ecc_cdh.c)
420425
target_link_libraries(ecc_cdh ${OPENSSL_TEST_LIBS})

tests/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,11 @@ dsatest_SOURCES = dsatest.c
431431
#endif
432432
#EXTRA_DIST += dtlstest.sh
433433

434+
# dtls_wire_test
435+
TESTS += dtls_wire_test
436+
check_PROGRAMS += dtls_wire_test
437+
dtls_wire_test_SOURCES = dtls_wire_test.c
438+
434439
# ecc_cdh
435440
TESTS += ecc_cdh
436441
check_PROGRAMS += ecc_cdh

0 commit comments

Comments
 (0)