Add regress rfc3779
This commit is contained in:
parent
298b1e5834
commit
e70d8cba5c
1
.gitignore
vendored
1
.gitignore
vendored
@ -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*
|
||||
|
@ -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})
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user