diff options
author | Theo Buehler <tb@openbsd.org> | 2023-07-16 01:56:50 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-07-16 01:56:50 -0600 |
commit | 5d6a7305fcdce3bef745a8db7bccbb4420704c14 (patch) | |
tree | feed17c60445660204bc66434c4aa6a61845ff06 /tests | |
parent | 8450ca8c073af0ecd12bd938261bcb4aeb86db6b (diff) | |
download | portable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.tar.gz portable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.tar.bz2 portable-5d6a7305fcdce3bef745a8db7bccbb4420704c14.zip |
link ecc_cdh test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
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 | ||
323 | add_executable(ecc_cdh ecc_cdh.c) | ||
324 | target_link_libraries(ecc_cdh ${OPENSSL_TEST_LIBS}) | ||
325 | add_test(ecc_cdh ecc_cdh) | ||
326 | |||
322 | # ec_asn1_test | 327 | # ec_asn1_test |
323 | add_executable(ec_asn1_test ec_asn1_test.c) | 328 | add_executable(ec_asn1_test ec_asn1_test.c) |
324 | target_link_libraries(ec_asn1_test ${OPENSSL_TEST_LIBS}) | 329 | target_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 | ||
340 | TESTS += ecc_cdh | ||
341 | check_PROGRAMS += ecc_cdh | ||
342 | ecc_cdh_SOURCES = ecc_cdh.c | ||
343 | |||
339 | # ec_asn1_test | 344 | # ec_asn1_test |
340 | TESTS += ec_asn1_test | 345 | TESTS += ec_asn1_test |
341 | check_PROGRAMS += ec_asn1_test | 346 | check_PROGRAMS += ec_asn1_test |