diff options
author | Brent Cook <busterb@gmail.com> | 2021-11-08 07:43:11 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2021-11-08 07:43:11 -0600 |
commit | 9243262fef25687500393b47acde3f8f42995de4 (patch) | |
tree | eeb550c142bff146e8d9be8b6ef343e3d0ffae7a | |
parent | 642e2ab1837c371015a8b945b4b0d054de8eb481 (diff) | |
download | portable-9243262fef25687500393b47acde3f8f42995de4.tar.gz portable-9243262fef25687500393b47acde3f8f42995de4.tar.bz2 portable-9243262fef25687500393b47acde3f8f42995de4.zip |
add x509req_ext
-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 f0df7b0..2cdd683 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -586,6 +586,11 @@ add_executable(x509name x509name.c) | |||
586 | target_link_libraries(x509name ${OPENSSL_LIBS}) | 586 | target_link_libraries(x509name ${OPENSSL_LIBS}) |
587 | add_test(x509name x509name) | 587 | add_test(x509name x509name) |
588 | 588 | ||
589 | # x509req_ext | ||
590 | add_executable(x509req_ext x509req_ext.c) | ||
591 | target_link_libraries(x509req_ext ${OPENSSL_LIBS}) | ||
592 | add_test(x509req_ext x509req_ext) | ||
593 | |||
589 | if(BUILD_SHARED_LIBS) | 594 | if(BUILD_SHARED_LIBS) |
590 | add_custom_command(TARGET x25519test POST_BUILD | 595 | add_custom_command(TARGET x25519test POST_BUILD |
591 | COMMAND "${CMAKE_COMMAND}" -E copy | 596 | COMMAND "${CMAKE_COMMAND}" -E copy |
diff --git a/tests/Makefile.am b/tests/Makefile.am index f1086b3..cfeb0ae 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -520,3 +520,8 @@ x509_info_SOURCES = x509_info.c | |||
520 | TESTS += x509name | 520 | TESTS += x509name |
521 | check_PROGRAMS += x509name | 521 | check_PROGRAMS += x509name |
522 | x509name_SOURCES = x509name.c | 522 | x509name_SOURCES = x509name.c |
523 | |||
524 | # x509req_ext | ||
525 | TESTS += x509req_ext | ||
526 | check_PROGRAMS += x509req_ext | ||
527 | x509req_ext_SOURCES = x509req_ext.c | ||