diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2017-06-27 12:32:56 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2017-06-27 12:34:46 +0200 |
commit | 8f7435e4553916e6cc431e4b5316cc5861fd9063 (patch) | |
tree | 080345d319b20f8ef28d1bacc5a6e20cd34bf4ed /CMakeLists.txt | |
parent | 06c0deb7935a9390a67bc02d6c323e64c785a026 (diff) | |
download | libnitrokey-8f7435e4553916e6cc431e4b5316cc5861fd9063.tar.gz libnitrokey-8f7435e4553916e6cc431e4b5316cc5861fd9063.tar.bz2 |
Add C++ tests for some current issues
Issues:
https://github.com/Nitrokey/nitrokey-storage-firmware/issues/36
https://github.com/Nitrokey/nitrokey-storage-firmware/issues/31
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b1103db..6741b18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,19 +114,22 @@ IF (COMPILE_TESTS) add_library(catch SHARED unittest/catch_main.cpp ) add_executable (test_C_API unittest/test_C_API.cpp) - target_link_libraries (test_C_API ${EXTRA_LIBS} ${LIBNAME} catch) + target_link_libraries (test_C_API ${EXTRA_LIBS} ${LIBNAME}-log catch) add_executable (test2 unittest/test2.cc) - target_link_libraries (test2 ${EXTRA_LIBS} ${LIBNAME} catch) + target_link_libraries (test2 ${EXTRA_LIBS} ${LIBNAME}-log catch) add_executable (test3 unittest/test3.cc) - target_link_libraries (test3 ${EXTRA_LIBS} ${LIBNAME} catch) + target_link_libraries (test3 ${EXTRA_LIBS} ${LIBNAME}-log catch) add_executable (test_HOTP unittest/test_HOTP.cc) - target_link_libraries (test_HOTP ${EXTRA_LIBS} ${LIBNAME} catch) + target_link_libraries (test_HOTP ${EXTRA_LIBS} ${LIBNAME}-log catch) add_executable (test1 unittest/test.cc) - target_link_libraries (test1 ${EXTRA_LIBS} ${LIBNAME} catch) + target_link_libraries (test1 ${EXTRA_LIBS} ${LIBNAME}-log catch) + + add_executable (test_issues unittest/test_issues.cc) + target_link_libraries (test_issues ${EXTRA_LIBS} ${LIBNAME}-log catch) #run with 'make test' or 'ctest' #needs connected PRO device for success |