aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 5aaebd9..8daf7d8 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_handshake_msg_test
419add_executable(dtls_handshake_msg_test dtls_handshake_msg_test.c)
420target_link_libraries(dtls_handshake_msg_test ${OPENSSL_TEST_LIBS})
421add_platform_test(dtls_handshake_msg_test dtls_handshake_msg_test)
422
418# dtls_wire_test 423# dtls_wire_test
419add_executable(dtls_wire_test dtls_wire_test.c) 424add_executable(dtls_wire_test dtls_wire_test.c)
420target_link_libraries(dtls_wire_test ${OPENSSL_TEST_LIBS}) 425target_link_libraries(dtls_wire_test ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 96a850f..f98fac7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -435,6 +435,11 @@ dsatest_SOURCES = dsatest.c
435#endif 435#endif
436#EXTRA_DIST += dtlstest.sh 436#EXTRA_DIST += dtlstest.sh
437 437
438# dtls_handshake_msg_test
439TESTS += dtls_handshake_msg_test
440check_PROGRAMS += dtls_handshake_msg_test
441dtls_handshake_msg_test_SOURCES = dtls_handshake_msg_test.c
442
438# dtls_wire_test 443# dtls_wire_test
439TESTS += dtls_wire_test 444TESTS += dtls_wire_test
440check_PROGRAMS += dtls_wire_test 445check_PROGRAMS += dtls_wire_test