diff options
author | Alex Bennée | 2022-06-13 19:12:55 +0200 |
---|---|---|
committer | Alex Bennée | 2022-06-14 01:15:06 +0200 |
commit | ab698a4d8b32be717a675880935c774be66f0d03 (patch) | |
tree | 0ace33449b8fa19f8bb8eef719a814701e8f259d /tests/docker | |
parent | gitlab-ci: Fix the build-cfi-aarch64 and build-cfi-ppc64-s390x jobs (diff) | |
download | qemu-ab698a4d8b32be717a675880935c774be66f0d03.tar.gz qemu-ab698a4d8b32be717a675880935c774be66f0d03.tar.xz qemu-ab698a4d8b32be717a675880935c774be66f0d03.zip |
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 <alex.bennee@linaro.org>
Fixes: d39eaa2266 ("tests/docker: simplify docker-TEST@IMAGE targets")
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220613171258.1905715-5-alex.bennee@linaro.org>
Diffstat (limited to 'tests/docker')
-rw-r--r-- | tests/docker/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include index e68f91b853..ef4518d9eb 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) \ |