diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2020-09-15 21:38:05 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2020-09-15 21:38:05 +0900 |
commit | 1c0b5f07345a5b44e4095feb21b18d0a3f66cd60 (patch) | |
tree | 1ba52aa5ac819e8ea987da128927e7aa1ea148d4 | |
parent | 6969cf036e866b88a5d6ed88d876ced85486c5a9 (diff) | |
download | portable-1c0b5f07345a5b44e4095feb21b18d0a3f66cd60.tar.gz portable-1c0b5f07345a5b44e4095feb21b18d0a3f66cd60.tar.bz2 portable-1c0b5f07345a5b44e4095feb21b18d0a3f66cd60.zip |
Add regress x509_info.c
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 89e670f..13dd005 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -548,6 +548,11 @@ add_executable(x509attribute x509attribute.c) | |||
548 | target_link_libraries(x509attribute ${OPENSSL_LIBS}) | 548 | target_link_libraries(x509attribute ${OPENSSL_LIBS}) |
549 | add_test(x509attribute x509attribute) | 549 | add_test(x509attribute x509attribute) |
550 | 550 | ||
551 | # x509_info | ||
552 | add_executable(x509_info x509_info.c) | ||
553 | target_link_libraries(x509_info ${OPENSSL_LIBS}) | ||
554 | add_test(x509_info x509_info) | ||
555 | |||
551 | # x509name | 556 | # x509name |
552 | add_executable(x509name x509name.c) | 557 | add_executable(x509name x509name.c) |
553 | target_link_libraries(x509name ${OPENSSL_LIBS}) | 558 | target_link_libraries(x509name ${OPENSSL_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index ddb3d05..34f088a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -484,6 +484,11 @@ TESTS += x509attribute | |||
484 | check_PROGRAMS += x509attribute | 484 | check_PROGRAMS += x509attribute |
485 | x509attribute_SOURCES = x509attribute.c | 485 | x509attribute_SOURCES = x509attribute.c |
486 | 486 | ||
487 | # x509_info | ||
488 | TESTS += x509_info | ||
489 | check_PROGRAMS += x509_info | ||
490 | x509_info_SOURCES = x509_info.c | ||
491 | |||
487 | # x509name | 492 | # x509name |
488 | TESTS += x509name | 493 | TESTS += x509name |
489 | check_PROGRAMS += x509name | 494 | check_PROGRAMS += x509name |