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
|
||||
@$(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.")
|
||||
|
Loading…
Reference in New Issue
Block a user