Add regress asn1evp

This commit is contained in:
kinichiro 2017-12-22 23:32:22 +09:00
parent 7b6953e9a9
commit b38d7f0f8a
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -53,6 +53,7 @@ test-driver
*.trs *.trs
tests/aes_wrap* tests/aes_wrap*
tests/arc4random_fork* tests/arc4random_fork*
tests/asn1evp*
tests/asn1time* tests/asn1time*
tests/cipher* tests/cipher*
tests/explicit_bzero* tests/explicit_bzero*

View File

@ -41,6 +41,11 @@ if(NOT CMAKE_HOST_WIN32 AND NOT CMAKE_SYSTEM_NAME MATCHES "MINGW")
add_test(arc4randomforktest ${CMAKE_CURRENT_SOURCE_DIR}/arc4randomforktest.sh) add_test(arc4randomforktest ${CMAKE_CURRENT_SOURCE_DIR}/arc4randomforktest.sh)
endif() endif()
# asn1evp
add_executable(asn1evp asn1evp.c)
target_link_libraries(asn1evp ${TESTS_LIBS})
add_test(asn1evp asn1evp)
# asn1test # asn1test
add_executable(asn1test asn1test.c) add_executable(asn1test asn1test.c)
target_link_libraries(asn1test ${TESTS_LIBS}) target_link_libraries(asn1test ${TESTS_LIBS})

View File

@ -43,6 +43,11 @@ arc4randomforktest_SOURCES = arc4randomforktest.c
endif endif
EXTRA_DIST += arc4randomforktest.sh EXTRA_DIST += arc4randomforktest.sh
# asn1evp
TESTS += asn1evp
check_PROGRAMS += asn1evp
asn1evp_SOURCES = asn1evp.c
# asn1test # asn1test
TESTS += asn1test TESTS += asn1test
check_PROGRAMS += asn1test check_PROGRAMS += asn1test