From: Alex Bennée Date: Mon, 13 Jun 2022 17:12:55 +0000 (+0100) Subject: tests/docker: fix the IMAGE for build invocation X-Git-Tag: v7.1.0-rc0~64^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab698a4d8b32be717a675880935c774be66f0d03;p=thirdparty%2Fqemu.git tests/docker: fix the IMAGE for build invocation We inadvertently broke the ability to run local builds when the code was re-factored. The result was the run stanza failing to find the docker image with it's qemu/ prefix. Signed-off-by: Alex Bennée Fixes: d39eaa2266 ("tests/docker: simplify docker-TEST@IMAGE targets") Reviewed-by: Richard Henderson Message-Id: <20220613171258.1905715-5-alex.bennee@linaro.org> --- diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include index e68f91b8534..ef4518d9ebf 100644 --- a/tests/docker/Makefile.include +++ b/tests/docker/Makefile.include @@ -171,7 +171,7 @@ DOCKER_TESTS := $(if $(TESTS), $(filter $(TESTS), $(__TESTS)), $(__TESTS)) $(foreach i,$(filter-out $(DOCKER_PARTIAL_IMAGES),$(DOCKER_IMAGES)), \ $(foreach t,$(DOCKER_TESTS), \ $(eval .PHONY: docker-$t@$i) \ - $(eval docker-$t@$i: docker-image-$i; @$(MAKE) docker-run TEST=$t IMAGE=$i) \ + $(eval docker-$t@$i: docker-image-$i; @$(MAKE) docker-run TEST=$t IMAGE=qemu/$i) \ ) \ $(foreach t,$(DOCKER_TESTS), \ $(eval docker-all-tests: docker-$t@$i) \