Merge pull request #1209 from halseth/makefile-fixes
[Makefile] Remove logs between runs, print date
This commit is contained in:
commit
b43fc2f42f
3
Makefile
3
Makefile
@ -166,8 +166,7 @@ unit-race:
|
||||
|
||||
flakehunter: build
|
||||
@$(call print, "Flake hunting integration tests.")
|
||||
$(ITEST)
|
||||
while [ $$? -eq 0 ]; do /bin/sh -c "$(ITEST)"; done
|
||||
while [ $$? -eq 0 ]; do $(ITEST); done
|
||||
|
||||
flake-unit:
|
||||
@$(call print, "Flake hunting unit tests.")
|
||||
|
@ -44,4 +44,4 @@ endif
|
||||
|
||||
# Construct the integration test command with the added build flags.
|
||||
ITEST_TAGS := $(TEST_TAGS) rpctest
|
||||
ITEST := $(GOTEST) -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput
|
||||
ITEST := rm output*.log; date; $(GOTEST) -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput
|
||||
|
Loading…
Reference in New Issue
Block a user