diff options
author | Brent Cook <bcook@openbsd.org> | 2015-09-28 17:49:46 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-09-28 17:49:46 -0500 |
commit | 53f8663976205a73a8b36515dec549f7b14f3980 (patch) | |
tree | defe7bed62d22b5aff77ad851f069435f04e8b1d | |
parent | 9af6ff9a3abb9df79f0b741016961a4b70b58ba2 (diff) | |
download | portable-53f8663976205a73a8b36515dec549f7b14f3980.tar.gz portable-53f8663976205a73a8b36515dec549f7b14f3980.tar.bz2 portable-53f8663976205a73a8b36515dec549f7b14f3980.zip |
add asn1time to cmake tests
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f6487ba..886e291 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -36,6 +36,11 @@ add_executable(asn1test asn1test.c) | |||
36 | target_link_libraries(asn1test ${OPENSSL_LIBS}) | 36 | target_link_libraries(asn1test ${OPENSSL_LIBS}) |
37 | add_test(asn1test asn1test) | 37 | add_test(asn1test asn1test) |
38 | 38 | ||
39 | # asn1time | ||
40 | add_executable(asn1time asn1time.c) | ||
41 | target_link_libraries(asn1time ${OPENSSL_LIBS}) | ||
42 | add_test(asn1time asn1time) | ||
43 | |||
39 | # base64test | 44 | # base64test |
40 | add_executable(base64test base64test.c) | 45 | add_executable(base64test base64test.c) |
41 | target_link_libraries(base64test ${OPENSSL_LIBS}) | 46 | target_link_libraries(base64test ${OPENSSL_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index 3d6a30d..63f9341 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -45,7 +45,7 @@ asn1test_SOURCES = asn1test.c | |||
45 | # asn1time | 45 | # asn1time |
46 | TESTS += asn1time | 46 | TESTS += asn1time |
47 | check_PROGRAMS += asn1time | 47 | check_PROGRAMS += asn1time |
48 | asn1test_SOURCES = asn1time.c | 48 | asn1time_SOURCES = asn1time.c |
49 | 49 | ||
50 | # base64test | 50 | # base64test |
51 | TESTS += base64test | 51 | TESTS += base64test |