]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tests/vm/centos: fix centos build target
authorAlex Bennée <alex.bennee@linaro.org>
Wed, 20 Nov 2019 15:11:12 +0000 (15:11 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Tue, 26 Nov 2019 11:28:08 +0000 (11:28 +0000)
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>
tests/vm/centos

index 53976f1c4c95ec1e8664a5ebab7a5534c6ceb0e9..b9e851f2d332d12f3d98aea6fea326507e27b6ec 100755 (executable)
@@ -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()