From 3d5737e04ca61144e0ea0c5cc15381cdc5c2f30c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 16 Aug 2017 16:02:04 +0200 Subject: [PATCH] Fix make test-unit printing deprecation warning Commit 1fb615599a83f41b449529df24f7e833c727e0ed moved the unit tests out of `hack/make.sh`, however the Makefile still used the old path, resulting in a warning being printed when the unit tests were run: ---> Making bundle: test-unit (in bundles/17.06.0-dev/test-unit) DEPRECATED: use hack/test/unit instead of hack/make.sh test-unit This patch updates the Makefile to use the new command. Signed-off-by: Sebastiaan van Stijn Upstream-commit: c500bb562f6dfd1ae4a77f3a66175089ff8f74e8 Component: engine --- components/engine/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/Makefile b/components/engine/Makefile index 85877bdd2e..198169c15a 100644 --- a/components/engine/Makefile +++ b/components/engine/Makefile @@ -160,7 +160,7 @@ test-integration: build ## run the integration tests $(DOCKER_RUN_DOCKER) hack/make.sh dynbinary test-integration test-unit: build ## run the unit tests - $(DOCKER_RUN_DOCKER) hack/make.sh test-unit + $(DOCKER_RUN_DOCKER) hack/test/unit tgz: build ## build the archives (.zip on windows and .tgz\notherwise) containing the binaries $(DOCKER_RUN_DOCKER) hack/make.sh dynbinary binary cross tgz