aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorRichard Levitte <richard@levitte.org>2021-05-01 08:41:42 +0200
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>2021-05-02 16:10:29 +0300
commit3881226ccc975666346f88d00c1f1917e9ccfd91 (patch)
treed78aae5897b569907beef07804f30471af8fd365 /CMakeLists.txt
parentf3e84b52d2c5bf6774070b758714b90845d722d2 (diff)
downloadgost-engine-3881226ccc975666346f88d00c1f1917e9ccfd91.zip
gost-engine-3881226ccc975666346f88d00c1f1917e9ccfd91.tar.gz
gost-engine-3881226ccc975666346f88d00c1f1917e9ccfd91.tar.bz2
Don't load the gost engine in test_curves.c
This test is so internal that it doesn't even need the engine.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ee1e080..6ba5a97 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -201,10 +201,10 @@ target_link_libraries(test_ciphers ${OPENSSL_CRYPTO_LIBRARY})
add_test(NAME ciphers COMMAND test_ciphers)
set_tests_properties(ciphers PROPERTIES ENVIRONMENT "${TEST_ENVIRONMENT}")
+# test_curves is an internals testing program, it doesn't need a test env
add_executable(test_curves test_curves.c)
target_link_libraries(test_curves gost_core ${OPENSSL_CRYPTO_LIBRARY})
-add_test(NAME curves
- COMMAND test_curves)
+add_test(NAME curves COMMAND test_curves)
add_executable(test_params test_params.c)
target_link_libraries(test_params ${OPENSSL_CRYPTO_LIBRARY})