aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2022-04-04 01:09:27 -0500
committerBrent Cook <busterb@gmail.com>2022-04-04 01:09:27 -0500
commitb52dc3d9b292f4f644d7506a2d62df11f2a6e269 (patch)
treef45a32be7d4172909d555cdb59e6449e068dac28 /tests
parente5263d716312ebf13b46fc886ffbd09f96106864 (diff)
downloadportable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.tar.gz
portable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.tar.bz2
portable-b52dc3d9b292f4f644d7506a2d62df11f2a6e269.zip
add evp_pkey_cleanup test
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt6
-rw-r--r--tests/Makefile.am6
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index fb7e499..7c80002 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -4,6 +4,7 @@ include_directories(
4 . 4 .
5 ../crypto/asn1 5 ../crypto/asn1
6 ../crypto/bio 6 ../crypto/bio
7 ../crypto/evp
7 ../crypto/modes 8 ../crypto/modes
8 ../crypto/x509 9 ../crypto/x509
9 ../ssl 10 ../ssl
@@ -243,6 +244,11 @@ add_executable(evp_pkey_check evp_pkey_check.c)
243target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS}) 244target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS})
244add_test(evp_pkey_check evp_pkey_check) 245add_test(evp_pkey_check evp_pkey_check)
245 246
247# evp_pkey_cleanup
248add_executable(evp_pkey_cleanup evp_pkey_cleanup.c)
249target_link_libraries(evp_pkey_cleanup ${OPENSSL_TEST_LIBS})
250add_test(evp_pkey_cleanup evp_pkey_cleanup)
251
246# evptest 252# evptest
247add_executable(evptest evptest.c) 253add_executable(evptest evptest.c)
248target_link_libraries(evptest ${OPENSSL_TEST_LIBS}) 254target_link_libraries(evptest ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index bea03b5..e58c0c0 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -4,6 +4,7 @@ AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL
4 4
5AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 5AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1
6AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio 6AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio
7AM_CPPFLAGS += -I $(top_srcdir)/crypto/evp
7AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes 8AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes
8AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 9AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509
9AM_CPPFLAGS += -I $(top_srcdir)/ssl 10AM_CPPFLAGS += -I $(top_srcdir)/ssl
@@ -255,6 +256,11 @@ TESTS += evp_pkey_check
255check_PROGRAMS += evp_pkey_check 256check_PROGRAMS += evp_pkey_check
256evp_pkey_check_SOURCES = evp_pkey_check.c 257evp_pkey_check_SOURCES = evp_pkey_check.c
257 258
259# evp_pkey_cleanup
260TESTS += evp_pkey_cleanup
261check_PROGRAMS += evp_pkey_cleanup
262evp_pkey_cleanup_SOURCES = evp_pkey_cleanup.c
263
258# evptest 264# evptest
259TESTS += evptest.sh 265TESTS += evptest.sh
260check_PROGRAMS += evptest 266check_PROGRAMS += evptest