aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoshua Sing <joshua@joshuasing.dev>2024-03-29 18:37:03 +1100
committerJoshua Sing <joshua@joshuasing.dev>2024-03-29 23:02:01 +1100
commite982ab4133921ebd263f8a4cadb3d28dca1526aa (patch)
treea6c7c048027c1c3bde36a693f323990d964369fb /tests
parent70d384d5371c95ff84c79fa7cb6fa31a744dd9b3 (diff)
downloadportable-e982ab4133921ebd263f8a4cadb3d28dca1526aa.tar.gz
portable-e982ab4133921ebd263f8a4cadb3d28dca1526aa.tar.bz2
portable-e982ab4133921ebd263f8a4cadb3d28dca1526aa.zip
Add whirlpool 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 9038ab4..f6bfcdd 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -765,6 +765,11 @@ add_executable(verifytest verifytest.c)
765target_link_libraries(verifytest ${LIBTLS_TEST_LIBS}) 765target_link_libraries(verifytest ${LIBTLS_TEST_LIBS})
766add_test(verifytest verifytest) 766add_test(verifytest verifytest)
767 767
768# whirlpool_test
769add_executable(whirlpool_test whirlpool_test.c)
770target_link_libraries(whirlpool_test ${OPENSSL_TEST_LIBS})
771add_test(whirlpool_test whirlpool_test)
772
768# x25519test 773# x25519test
769add_executable(x25519test x25519test.c) 774add_executable(x25519test x25519test.c)
770target_link_libraries(x25519test ${OPENSSL_TEST_LIBS}) 775target_link_libraries(x25519test ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index e4c0af6..9ff9980 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -766,6 +766,11 @@ TESTS += verifytest
766check_PROGRAMS += verifytest 766check_PROGRAMS += verifytest
767verifytest_SOURCES = verifytest.c 767verifytest_SOURCES = verifytest.c
768 768
769# whirlpool
770TESTS += whirlpool_test
771check_PROGRAMS += whirlpool_test
772whirlpool_test_SOURCES = whirlpool_test.c
773
769# x25519test 774# x25519test
770TESTS += x25519test 775TESTS += x25519test
771check_PROGRAMS += x25519test 776check_PROGRAMS += x25519test