Add regress rfc3779

This commit is contained in:
kinichiro 2021-12-27 19:17:45 +09:00
parent 298b1e5834
commit e70d8cba5c
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -76,6 +76,7 @@ tests/freenull*
tests/gost2814789t*
tests/key_schedule*
tests/mont*
tests/rfc3779*
tests/rfc5280time*
tests/ssl_get_shared_ciphers*
tests/ssl_methods*

View File

@ -396,6 +396,12 @@ add_executable(record_layer_test record_layer_test.c)
target_link_libraries(record_layer_test ${OPENSSL_TEST_LIBS})
add_test(record_layer_test record_layer_test)
# rfc3779
add_executable(rfc3779 rfc3779.c)
set_source_files_properties(rfc3779.c PROPERTIES COMPILE_FLAGS -D__unused=)
target_link_libraries(rfc3779 ${OPENSSL_TEST_LIBS})
add_test(rfc3779 rfc3779)
# rfc5280time
add_executable(rfc5280time rfc5280time.c)
target_link_libraries(rfc5280time ${OPENSSL_TEST_LIBS})

View File

@ -403,6 +403,12 @@ TESTS += record_layer_test
check_PROGRAMS += record_layer_test
record_layer_test_SOURCES = record_layer_test.c
# rfc3779
TESTS += rfc3779
rfc3779_CPPFLAGS = $(AM_CPPFLAGS) -D__unused=
check_PROGRAMS += rfc3779
rfc3779_SOURCES = rfc3779.c
# rfc5280time
check_PROGRAMS += rfc5280time
rfc5280time_SOURCES = rfc5280time.c