Merge pull request #5038 from cfromknecht/debug-unit

make: add unit-debug target
This commit is contained in:
Conner Fromknecht
2021-02-19 14:01:31 -08:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -194,6 +194,10 @@ unit: btcd
@$(call print, "Running unit tests.")
$(UNIT)
unit-debug: btcd
@$(call print, "Running debug unit tests.")
$(UNIT_DEBUG)
unit-cover: $(GOACC_BIN)
@$(call print, "Running unit coverage tests.")
$(GOACC_BIN) $(COVER_PKG) -- -tags="$(DEV_TAGS) $(LOG_TAGS)"
@@ -318,6 +322,7 @@ clean-mobile:
itest-only \
itest \
unit \
unit-debug \
unit-cover \
unit-race \
goveralls \