diff options
author | Cleber Rosa | 2019-06-13 15:07:17 +0200 |
---|---|---|
committer | Alex Bennée | 2019-07-04 20:22:58 +0200 |
commit | 40309abb65bed0f14dbb734bee3532664edfd1e6 (patch) | |
tree | 6ed4be65b44f6004461c683610c24086c77b769c /tests/vm | |
parent | tests/vm: avoid image presence check and removal (diff) | |
download | qemu-40309abb65bed0f14dbb734bee3532664edfd1e6.tar.gz qemu-40309abb65bed0f14dbb734bee3532664edfd1e6.tar.xz qemu-40309abb65bed0f14dbb734bee3532664edfd1e6.zip |
tests/vm: pin ubuntu.i386 image
It's a good practice to always have the same components used in tests.
According to:
https://cloud-images.ubuntu.com/releases/16.04/
New images are released from time to time, and the "release/"
directory points to the latest release. Let's pin to the latest
available version, and while at it, set a hash for verification.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190613130718.3763-4-crosa@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/vm')
-rwxr-xr-x | tests/vm/ubuntu.i386 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/vm/ubuntu.i386 b/tests/vm/ubuntu.i386 index 12867b193f..7017e6d388 100755 --- a/tests/vm/ubuntu.i386 +++ b/tests/vm/ubuntu.i386 @@ -61,7 +61,9 @@ class UbuntuX86VM(basevm.BaseVM): return os.path.join(cidir, "cloud-init.iso") def build_image(self, img): - cimg = self._download_with_cache("https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-i386-disk1.img") + cimg = self._download_with_cache( + "https://cloud-images.ubuntu.com/releases/16.04/release-20190605/ubuntu-16.04-server-cloudimg-i386-disk1.img", + sha256sum="e30091144c73483822b7c27193e9d47346dd1064229da577c3fedcf943f7cfcc") img_tmp = img + ".tmp" subprocess.check_call(["cp", "-f", cimg, img_tmp]) subprocess.check_call(["qemu-img", "resize", img_tmp, "50G"]) |