diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
4 files changed, 12 insertions, 0 deletions
@@ -144,6 +144,7 @@ tests/x509_algor* | |||
144 | tests/x509_asn1* | 144 | tests/x509_asn1* |
145 | tests/x509_extensions_test* | 145 | tests/x509_extensions_test* |
146 | tests/x509_info* | 146 | tests/x509_info* |
147 | tests/x509_name_test* | ||
147 | tests/x509attribute* | 148 | tests/x509attribute* |
148 | tests/x509name* | 149 | tests/x509name* |
149 | tests/x509req_ext* | 150 | tests/x509req_ext* |
@@ -89,6 +89,7 @@ LibreSSL Portable Release Notes: | |||
89 | - X509_NAME_print() and X509_OBJECT_up_ref_count() are no longer public. | 89 | - X509_NAME_print() and X509_OBJECT_up_ref_count() are no longer public. |
90 | - const corrected UI_OpenSSL() and BN_MONT_CTX_copy(). | 90 | - const corrected UI_OpenSSL() and BN_MONT_CTX_copy(). |
91 | - Support OPENSSL_NO_FILENAMES. | 91 | - Support OPENSSL_NO_FILENAMES. |
92 | - Support SSL_OP_NO_RENEGOTIATION and SSL_OP_ALLOW_CLIENT_RENEGOTIATION. | ||
92 | * New features | 93 | * New features |
93 | - libtls has a new tls_peer_cert_common_name() API call to retrieve | 94 | - libtls has a new tls_peer_cert_common_name() API call to retrieve |
94 | the peer's common name without having to inspect the PEM. | 95 | the peer's common name without having to inspect the PEM. |
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fa694cd..8d6fa9d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -931,6 +931,11 @@ add_executable(x509_info x509_info.c) | |||
931 | target_link_libraries(x509_info ${OPENSSL_TEST_LIBS}) | 931 | target_link_libraries(x509_info ${OPENSSL_TEST_LIBS}) |
932 | add_platform_test(x509_info x509_info) | 932 | add_platform_test(x509_info x509_info) |
933 | 933 | ||
934 | # x509_name_test | ||
935 | add_executable(x509_name_test x509_name_test.c) | ||
936 | target_link_libraries(x509_name_test ${OPENSSL_TEST_LIBS}) | ||
937 | add_platform_test(x509_name_test x509_name_test) | ||
938 | |||
934 | # x509name | 939 | # x509name |
935 | add_executable(x509name x509name.c) | 940 | add_executable(x509name x509name.c) |
936 | target_link_libraries(x509name ${OPENSSL_TEST_LIBS}) | 941 | target_link_libraries(x509name ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index eea4a71..8153fc9 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -910,6 +910,11 @@ TESTS += x509_info | |||
910 | check_PROGRAMS += x509_info | 910 | check_PROGRAMS += x509_info |
911 | x509_info_SOURCES = x509_info.c | 911 | x509_info_SOURCES = x509_info.c |
912 | 912 | ||
913 | # x509_name_test | ||
914 | TESTS += x509_name_test | ||
915 | check_PROGRAMS += x509_name_test | ||
916 | x509_name_test_SOURCES = x509_name_test.c | ||
917 | |||
913 | # x509name | 918 | # x509name |
914 | TESTS += x509name | 919 | TESTS += x509name |
915 | check_PROGRAMS += x509name | 920 | check_PROGRAMS += x509name |