From 53f8663976205a73a8b36515dec549f7b14f3980 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 28 Sep 2015 17:49:46 -0500 Subject: add asn1time to cmake tests --- tests/CMakeLists.txt | 5 +++++ tests/Makefile.am | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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) target_link_libraries(asn1test ${OPENSSL_LIBS}) add_test(asn1test asn1test) +# asn1time +add_executable(asn1time asn1time.c) +target_link_libraries(asn1time ${OPENSSL_LIBS}) +add_test(asn1time asn1time) + # base64test add_executable(base64test base64test.c) 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 # asn1time TESTS += asn1time check_PROGRAMS += asn1time -asn1test_SOURCES = asn1time.c +asn1time_SOURCES = asn1time.c # base64test TESTS += base64test -- cgit v1.2.3-55-g6feb