aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2021-12-27 19:17:45 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2022-02-02 19:18:22 +0900
commite70d8cba5c448f2229cb1114efa2684fc4e5d4f7 (patch)
treefeb3d28cb9246b7950bd1d714f4b6ce7202d52ea
parent298b1e58344657b790abec69188bf524a219bbf6 (diff)
downloadportable-e70d8cba5c448f2229cb1114efa2684fc4e5d4f7.tar.gz
portable-e70d8cba5c448f2229cb1114efa2684fc4e5d4f7.tar.bz2
portable-e70d8cba5c448f2229cb1114efa2684fc4e5d4f7.zip
Add regress rfc3779
-rw-r--r--.gitignore1
-rw-r--r--tests/CMakeLists.txt6
-rw-r--r--tests/Makefile.am6
3 files changed, 13 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index cd7e2ec..5e09e1b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -76,6 +76,7 @@ tests/freenull*
76tests/gost2814789t* 76tests/gost2814789t*
77tests/key_schedule* 77tests/key_schedule*
78tests/mont* 78tests/mont*
79tests/rfc3779*
79tests/rfc5280time* 80tests/rfc5280time*
80tests/ssl_get_shared_ciphers* 81tests/ssl_get_shared_ciphers*
81tests/ssl_methods* 82tests/ssl_methods*
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 8df7f09..58895ad 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -396,6 +396,12 @@ add_executable(record_layer_test record_layer_test.c)
396target_link_libraries(record_layer_test ${OPENSSL_TEST_LIBS}) 396target_link_libraries(record_layer_test ${OPENSSL_TEST_LIBS})
397add_test(record_layer_test record_layer_test) 397add_test(record_layer_test record_layer_test)
398 398
399# rfc3779
400add_executable(rfc3779 rfc3779.c)
401set_source_files_properties(rfc3779.c PROPERTIES COMPILE_FLAGS -D__unused=)
402target_link_libraries(rfc3779 ${OPENSSL_TEST_LIBS})
403add_test(rfc3779 rfc3779)
404
399# rfc5280time 405# rfc5280time
400add_executable(rfc5280time rfc5280time.c) 406add_executable(rfc5280time rfc5280time.c)
401target_link_libraries(rfc5280time ${OPENSSL_TEST_LIBS}) 407target_link_libraries(rfc5280time ${OPENSSL_TEST_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 4dc97e6..6ba51ba 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -403,6 +403,12 @@ TESTS += record_layer_test
403check_PROGRAMS += record_layer_test 403check_PROGRAMS += record_layer_test
404record_layer_test_SOURCES = record_layer_test.c 404record_layer_test_SOURCES = record_layer_test.c
405 405
406# rfc3779
407TESTS += rfc3779
408rfc3779_CPPFLAGS = $(AM_CPPFLAGS) -D__unused=
409check_PROGRAMS += rfc3779
410rfc3779_SOURCES = rfc3779.c
411
406# rfc5280time 412# rfc5280time
407check_PROGRAMS += rfc5280time 413check_PROGRAMS += rfc5280time
408rfc5280time_SOURCES = rfc5280time.c 414rfc5280time_SOURCES = rfc5280time.c