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:
Johan T. Halseth 2018-05-09 09:53:35 +02:00
parent ddcbb40898
commit bc22fc9b63
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -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.")