diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-03 10:27:22 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-04 12:11:44 +0000 |
| commit | 11fa442637f4548c7d023bf615a34a5b380c7110 (patch) | |
| tree | e87963a29b939464681ddca9ba96a0f3d53a5bf5 /Makefile | |
| parent | 98af2e954b78dc7607d0236a9db84b2143a33a90 (diff) | |
| download | monzero-core-11fa442637f4548c7d023bf615a34a5b380c7110.tar.gz monzero-core-11fa442637f4548c7d023bf615a34a5b380c7110.tar.xz monzero-core-11fa442637f4548c7d023bf615a34a5b380c7110.zip | |
Makefile: add a top level debug target for ASAN
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-asan: + mkdir -p $(builddir)/debug + cd $(builddir)/debug && cmake -D BUILD_TESTS=ON -D SANITIZE=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 |
