makefile flakehunter: call $(ITEST) directly, print current time
For some reason, starting the integration test using /bin/sh -c would cause unit tests to also be run. We fix this by just calling $(ITEST).
This commit is contained in:
parent
ddcbb40898
commit
bc22fc9b63
3
Makefile
3
Makefile
@ -166,8 +166,7 @@ unit-race:
|
|||||||
|
|
||||||
flakehunter: build
|
flakehunter: build
|
||||||
@$(call print, "Flake hunting integration tests.")
|
@$(call print, "Flake hunting integration tests.")
|
||||||
$(ITEST)
|
while [ $$? -eq 0 ]; do $(ITEST); done
|
||||||
while [ $$? -eq 0 ]; do /bin/sh -c "$(ITEST)"; done
|
|
||||||
|
|
||||||
flake-unit:
|
flake-unit:
|
||||||
@$(call print, "Flake hunting unit tests.")
|
@$(call print, "Flake hunting unit tests.")
|
||||||
|
Loading…
Reference in New Issue
Block a user