diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-03-14 09:43:01 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-03-14 09:43:02 +0200 |
commit | c88e9921043d7c40f023d24c3a3f39f2e96f8738 (patch) | |
tree | 844d670d6571358f44f3e2b3867e2401526407c5 /Makefile | |
parent | Merge pull request #5273 (diff) | |
parent | device/trezor: debugging features, trezor tests (diff) | |
download | monero-c88e9921043d7c40f023d24c3a3f39f2e96f8738.tar.xz |
Merge pull request #4977
5ea17909 device/trezor: debugging features, trezor tests (Dusan Klinec)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -63,6 +63,10 @@ debug-test: mkdir -p $(builddir)/debug cd $(builddir)/debug && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Debug $(topdir) && $(MAKE) && $(MAKE) ARGS="-E libwallet_api_tests" test +debug-test-trezor: + mkdir -p $(builddir)/debug + cd $(builddir)/debug && cmake -D BUILD_TESTS=ON -D TREZOR_DEBUG=ON -D CMAKE_BUILD_TYPE=Debug $(topdir) && $(MAKE) && $(MAKE) ARGS="-E libwallet_api_tests" test + debug-all: mkdir -p $(builddir)/debug cd $(builddir)/debug && cmake -D BUILD_TESTS=ON -D BUILD_SHARED_LIBS=OFF -D CMAKE_BUILD_TYPE=Debug $(topdir) && $(MAKE) |