aboutsummaryrefslogtreecommitdiff
path: root/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2016-07-04 23:29:39 -0500
committerBrent Cook <bcook@openbsd.org>2016-07-04 23:29:39 -0500
commitaab671088d5a484c2d1f804a7a744fce96d8188f (patch)
tree22e0928c619449b198041a07c579ce95a912265a /tests/CMakeLists.txt
parentccf66c469faf898161109d8277d669e4841df319 (diff)
downloadportable-aab671088d5a484c2d1f804a7a744fce96d8188f.tar.gz
portable-aab671088d5a484c2d1f804a7a744fce96d8188f.tar.bz2
portable-aab671088d5a484c2d1f804a7a744fce96d8188f.zip
add OCSP test
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r--tests/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 2935a82..b0d5ea0 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -194,6 +194,14 @@ add_executable(mont mont.c)
194target_link_libraries(mont ${OPENSSL_LIBS}) 194target_link_libraries(mont ${OPENSSL_LIBS})
195add_test(mont mont) 195add_test(mont mont)
196 196
197# ocsp_test
198if(ENABLE_EXTRATESTS)
199 add_executable(ocsp_test ocsp_test.c)
200 target_link_libraries(ocsp_test ${OPENSSL_LIBS})
201 add_test(ocsptest ${CMAKE_CURRENT_SOURCE_DIR}/ocsptest.sh)
202 set_tests_properties(ocsptest PROPERTIES ENVIRONMENT "srcdir=${CMAKE_CURRENT_SOURCE_DIR}")
203endif()
204
197# optionstest 205# optionstest
198add_executable(optionstest optionstest.c) 206add_executable(optionstest optionstest.c)
199target_link_libraries(optionstest ${OPENSSL_LIBS}) 207target_link_libraries(optionstest ${OPENSSL_LIBS})