device/trezor: debugging features, trezor tests

This commit is contained in:
Dusan Klinec 2018-11-20 14:40:51 +01:00
parent 31bdf7bd11
commit 5ea17909ca
No known key found for this signature in database
GPG key ID: 6337E118CCBCE103
24 changed files with 3616 additions and 177 deletions

View file

@ -42,7 +42,8 @@ set(core_tests_sources
tx_validation.cpp
v2_tests.cpp
rct.cpp
bulletproofs.cpp)
bulletproofs.cpp
wallet_tools.cpp)
set(core_tests_headers
block_reward.h
@ -60,7 +61,8 @@ set(core_tests_headers
tx_validation.h
v2_tests.h
rct.h
bulletproofs.h)
bulletproofs.h
wallet_tools.h)
add_executable(core_tests
${core_tests_sources}
@ -73,6 +75,7 @@ target_link_libraries(core_tests
version
epee
device
wallet
${CMAKE_THREAD_LIBS_INIT}
${EXTRA_LIBRARIES})
enable_stack_trace(core_tests)