diff options
Diffstat (limited to 'tests')
-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 ff1ab51..4bbc512 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -46,6 +46,11 @@ add_executable(asn1time asn1time.c) | |||
46 | target_link_libraries(asn1time ${OPENSSL_TEST_LIBS}) | 46 | target_link_libraries(asn1time ${OPENSSL_TEST_LIBS}) |
47 | add_test(asn1time asn1time) | 47 | add_test(asn1time asn1time) |
48 | 48 | ||
49 | # asn1x509 | ||
50 | add_executable(asn1x509 asn1x509.c) | ||
51 | target_link_libraries(asn1x509 ${OPENSSL_TEST_LIBS}) | ||
52 | add_test(asn1x509 asn1x509) | ||
53 | |||
49 | # base64test | 54 | # base64test |
50 | add_executable(base64test base64test.c) | 55 | add_executable(base64test base64test.c) |
51 | target_link_libraries(base64test ${OPENSSL_TEST_LIBS}) | 56 | target_link_libraries(base64test ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index b426ad0..f4da814 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -59,6 +59,11 @@ TESTS += asn1time | |||
59 | check_PROGRAMS += asn1time | 59 | check_PROGRAMS += asn1time |
60 | asn1time_SOURCES = asn1time.c | 60 | asn1time_SOURCES = asn1time.c |
61 | 61 | ||
62 | # asn1x509 | ||
63 | TESTS += asn1x509 | ||
64 | check_PROGRAMS += asn1x509 | ||
65 | asn1x509_SOURCES = asn1x509.c | ||
66 | |||
62 | # base64test | 67 | # base64test |
63 | TESTS += base64test | 68 | TESTS += base64test |
64 | check_PROGRAMS += base64test | 69 | check_PROGRAMS += base64test |