aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-11-20 15:11:12 +0000
committerAlex Bennée <alex.bennee@linaro.org>2019-11-26 11:28:08 +0000
commit6cd7b60848c5217b323370c77838c48a5f5457ea (patch)
treea8dd07b9462484fef8ea629556c655fcde3dd44e
parent65e05c82bdc6d348155e301c9d87dba7a08a5701 (diff)
downloadqemu-6cd7b60848c5217b323370c77838c48a5f5457ea.zip
qemu-6cd7b60848c5217b323370c77838c48a5f5457ea.tar.gz
qemu-6cd7b60848c5217b323370c77838c48a5f5457ea.tar.bz2
tests/vm/centos: fix centos build target
To be able to run the docker tests centos has here we have to install python3 as well as the basic tools. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
-rwxr-xr-xtests/vm/centos2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/centos b/tests/vm/centos
index 53976f1..b9e851f 100755
--- a/tests/vm/centos
+++ b/tests/vm/centos
@@ -73,7 +73,7 @@ class CentosVM(basevm.BaseVM):
self.wait_ssh()
self.ssh_root_check("touch /etc/cloud/cloud-init.disabled")
self.ssh_root_check("yum update -y")
- self.ssh_root_check("yum install -y docker make git")
+ self.ssh_root_check("yum install -y docker make git python3")
self.ssh_root_check("systemctl enable docker")
self.ssh_root("poweroff")
self.wait()