aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-07-16 01:56:50 -0600
committerTheo Buehler <tb@openbsd.org>2023-07-16 01:56:50 -0600
commit5d6a7305fcdce3bef745a8db7bccbb4420704c14 (patch)
treefeed17c60445660204bc66434c4aa6a61845ff06 /tests
parent8450ca8c073af0ecd12bd938261bcb4aeb86db6b (diff)
downloadportable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.tar.gz
portable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.tar.bz2
portable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.zip
link ecc_cdh test
Diffstat (limited to 'tests')
-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 b82a2a6..b660478 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -319,6 +319,11 @@ add_test(dsatest dsatest)
319# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}") 319# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}")
320# endif() 320# endif()
321 321
322# ecc_cdh
323add_executable(ecc_cdh ecc_cdh.c)
324target_link_libraries(ecc_cdh ${OPENSSL_TEST_LIBS})
325add_test(ecc_cdh ecc_cdh)
326
322# ec_asn1_test 327# ec_asn1_test
323add_executable(ec_asn1_test ec_asn1_test.c) 328add_executable(ec_asn1_test ec_asn1_test.c)
324target_link_libraries(ec_asn1_test ${OPENSSL_TEST_LIBS}) 329target_link_libraries(ec_asn1_test ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 28d7d0f..a77b145 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -336,6 +336,11 @@ dsatest_SOURCES = dsatest.c
336#endif 336#endif
337#EXTRA_DIST += dtlstest.sh 337#EXTRA_DIST += dtlstest.sh
338 338
339# ecc_cdh
340TESTS += ecc_cdh
341check_PROGRAMS += ecc_cdh
342ecc_cdh_SOURCES = ecc_cdh.c
343
339# ec_asn1_test 344# ec_asn1_test
340TESTS += ec_asn1_test 345TESTS += ec_asn1_test
341check_PROGRAMS += ec_asn1_test 346check_PROGRAMS += ec_asn1_test