diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-09-29 12:41:58 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2022-10-06 11:53:40 +0100 |
commit | c4575b59155e2e0065c29d56496dbf3e6ffd035b (patch) | |
tree | 167cc3f487f694a28f037b5d4214b52c3f12a6ca /tests/docker | |
parent | 61cbb35677896ef2de8aa907e91024a9e69edde8 (diff) | |
download | qemu-c4575b59155e2e0065c29d56496dbf3e6ffd035b.zip qemu-c4575b59155e2e0065c29d56496dbf3e6ffd035b.tar.gz qemu-c4575b59155e2e0065c29d56496dbf3e6ffd035b.tar.bz2 |
configure: store container engine in config-host.mak
In preparation for removing $(DOCKER_SCRIPT) from the tests/tcg configuration
files, have Make use the same container engine that had been probed at
configure time.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220929114231.583801-19-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 270e997..c87f144 100644 --- a/tests/docker/Makefile.include +++ b/tests/docker/Makefile.include @@ -14,7 +14,7 @@ DOCKER_DEFAULT_REGISTRY := registry.gitlab.com/qemu-project/qemu endif DOCKER_REGISTRY := $(if $(REGISTRY),$(REGISTRY),$(DOCKER_DEFAULT_REGISTRY)) -ENGINE := auto +ENGINE ?= auto DOCKER_SCRIPT=$(SRC_PATH)/tests/docker/docker.py --engine $(ENGINE) CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$) |