aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorRichard Levitte <richard@levitte.org>2021-05-12 13:36:15 +0200
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>2021-10-11 19:34:09 +0300
commitc7c5c6387bdfabd1fb17860ca7432b277168798b (patch)
treece4062b9b01f8ce4f6f70f2abd64ccbc31ea5682 /CMakeLists.txt
parentb92c6c80b9a1790933d1fd6817b674e724658dc8 (diff)
downloadgost-engine-c7c5c6387bdfabd1fb17860ca7432b277168798b.zip
gost-engine-c7c5c6387bdfabd1fb17860ca7432b277168798b.tar.gz
gost-engine-c7c5c6387bdfabd1fb17860ca7432b277168798b.tar.bz2
Making a gost provider - Adapt test_ciphers.c for providers
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ef3116..60f33f5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -237,6 +237,9 @@ target_link_libraries(test_ciphers OpenSSL::Crypto)
add_test(NAME ciphers-with-engine COMMAND test_ciphers)
set_tests_properties(ciphers-with-engine
PROPERTIES ENVIRONMENT "${TEST_ENVIRONMENT_ENGINE}")
+add_test(NAME ciphers-with-provider COMMAND test_ciphers)
+set_tests_properties(ciphers-with-provider
+ PROPERTIES ENVIRONMENT "${TEST_ENVIRONMENT_PROVIDER}")
# test_curves is an internals testing program, it doesn't need a test env
add_executable(test_curves test_curves.c)