Merge pull request #1209 from halseth/makefile-fixes

[Makefile] Remove logs between runs, print date
This commit is contained in:
Olaoluwa Osuntokun 2018-06-01 17:33:52 -07:00 committed by GitHub
commit b43fc2f42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

@ -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