From bc22fc9b63c8d069f8f8791bb7a2e65e6ab15e41 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Wed, 9 May 2018 09:53:35 +0200 Subject: [PATCH] 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). --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5297aed0..c8f7d5c1 100644 --- a/Makefile +++ b/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.")