aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-09-28 17:49:46 -0500
committerBrent Cook <bcook@openbsd.org>2015-09-28 17:49:46 -0500
commit53f8663976205a73a8b36515dec549f7b14f3980 (patch)
treedefe7bed62d22b5aff77ad851f069435f04e8b1d
parent9af6ff9a3abb9df79f0b741016961a4b70b58ba2 (diff)
downloadportable-53f8663976205a73a8b36515dec549f7b14f3980.tar.gz
portable-53f8663976205a73a8b36515dec549f7b14f3980.tar.bz2
portable-53f8663976205a73a8b36515dec549f7b14f3980.zip
add asn1time to cmake tests
-rw-r--r--tests/CMakeLists.txt5
-rw-r--r--tests/Makefile.am2
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)
36target_link_libraries(asn1test ${OPENSSL_LIBS}) 36target_link_libraries(asn1test ${OPENSSL_LIBS})
37add_test(asn1test asn1test) 37add_test(asn1test asn1test)
38 38
39# asn1time
40add_executable(asn1time asn1time.c)
41target_link_libraries(asn1time ${OPENSSL_LIBS})
42add_test(asn1time asn1time)
43
39# base64test 44# base64test
40add_executable(base64test base64test.c) 45add_executable(base64test base64test.c)
41target_link_libraries(base64test ${OPENSSL_LIBS}) 46target_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
46TESTS += asn1time 46TESTS += asn1time
47check_PROGRAMS += asn1time 47check_PROGRAMS += asn1time
48asn1test_SOURCES = asn1time.c 48asn1time_SOURCES = asn1time.c
49 49
50# base64test 50# base64test
51TESTS += base64test 51TESTS += base64test