Add regress tls_prf

This commit is contained in:
kinichiro 2017-03-11 22:28:24 +09:00
parent 350170b6ab
commit cb73e4bef6
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -61,6 +61,7 @@ tests/rfc5280time*
tests/ssl_versions*
tests/timingsafe*
tests/tls_ext_alpn*
tests/tls_prf*
tests/*test
tests/tests.h
tests/*test.c

View File

@ -384,6 +384,11 @@ add_executable(tls_ext_alpn tls_ext_alpn.c)
target_link_libraries(tls_ext_alpn ${TESTS_LIBS})
add_test(tls_ext_alpn tls_ext_alpn)
# tls_prf
add_executable(tls_prf tls_prf.c)
target_link_libraries(tls_prf ${TESTS_LIBS})
add_test(tls_prf tls_prf)
# utf8test
add_executable(utf8test utf8test.c)
target_link_libraries(utf8test ${TESTS_LIBS})

View File

@ -359,6 +359,11 @@ TESTS += tls_ext_alpn
check_PROGRAMS += tls_ext_alpn
tls_ext_alpn_SOURCES = tls_ext_alpn.c
# tls_prf
TESTS += tls_prf
check_PROGRAMS += tls_prf
tls_prf_SOURCES = tls_prf.c
# utf8test
TESTS += utf8test
check_PROGRAMS += utf8test