diff --git a/.gitignore b/.gitignore index 4f4cf890ad..cc132b5be4 100644 --- a/.gitignore +++ b/.gitignore @@ -109,7 +109,6 @@ tests/ctlog.conf tests/*.crt tests/ec_point_conversion* tests/ecc_cdh* -tests/evp_pkey_check* tests/evp_pkey_cleanup* tests/explicit_bzero* tests/freenull* diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e930236a5d..61de671736 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -423,11 +423,6 @@ add_executable(evp_ecx_test evp_ecx_test.c) target_link_libraries(evp_ecx_test ${OPENSSL_TEST_LIBS}) add_platform_test(evp_ecx_test evp_ecx_test) -# evp_pkey_check -add_executable(evp_pkey_check evp_pkey_check.c) -target_link_libraries(evp_pkey_check ${OPENSSL_TEST_LIBS}) -add_platform_test(evp_pkey_check evp_pkey_check) - # evp_pkey_cleanup add_executable(evp_pkey_cleanup evp_pkey_cleanup.c) target_link_libraries(evp_pkey_cleanup ${OPENSSL_TEST_LIBS}) diff --git a/tests/Makefile.am b/tests/Makefile.am index 5388126c7f..a1b89b7df1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -435,11 +435,6 @@ TESTS += evp_ecx_test check_PROGRAMS += evp_ecx_test evp_ecx_test_SOURCES = evp_ecx_test.c -# evp_pkey_check -TESTS += evp_pkey_check -check_PROGRAMS += evp_pkey_check -evp_pkey_check_SOURCES = evp_pkey_check.c - # evp_pkey_cleanup TESTS += evp_pkey_cleanup check_PROGRAMS += evp_pkey_cleanup