diff options
-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 4c38a7d..991fb01 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -80,6 +80,11 @@ add_executable(asn1object asn1object.c) | |||
80 | target_link_libraries(asn1object ${OPENSSL_TEST_LIBS}) | 80 | target_link_libraries(asn1object ${OPENSSL_TEST_LIBS}) |
81 | add_test(asn1object asn1object) | 81 | add_test(asn1object asn1object) |
82 | 82 | ||
83 | # asn1oct | ||
84 | add_executable(asn1oct asn1oct.c) | ||
85 | target_link_libraries(asn1oct ${OPENSSL_TEST_LIBS}) | ||
86 | add_test(asn1oct asn1oct) | ||
87 | |||
83 | # asn1string_copy | 88 | # asn1string_copy |
84 | add_executable(asn1string_copy asn1string_copy.c) | 89 | add_executable(asn1string_copy asn1string_copy.c) |
85 | target_link_libraries(asn1string_copy ${OPENSSL_TEST_LIBS}) | 90 | target_link_libraries(asn1string_copy ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index b17f1ef..71037d8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -102,6 +102,11 @@ TESTS += asn1object | |||
102 | check_PROGRAMS += asn1object | 102 | check_PROGRAMS += asn1object |
103 | asn1object_SOURCES = asn1object.c | 103 | asn1object_SOURCES = asn1object.c |
104 | 104 | ||
105 | # asn1oct | ||
106 | TESTS += asn1oct | ||
107 | check_PROGRAMS += asn1oct | ||
108 | asn1oct_SOURCES = asn1oct.c | ||
109 | |||
105 | # asn1string_copy | 110 | # asn1string_copy |
106 | TESTS += asn1string_copy | 111 | TESTS += asn1string_copy |
107 | check_PROGRAMS += asn1string_copy | 112 | check_PROGRAMS += asn1string_copy |