From: Cleber Rosa <crosa@redhat.com>
To: qemu-devel@nongnu.org, Peter Maydell <peter.maydell@linaro.org>
Cc: "Thomas Huth" <thuth@redhat.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Willian Rampazzo" <wrampazz@redhat.com>,
"Cleber Rosa" <crosa@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Beraldo Leal" <bleal@redhat.com>
Subject: [PATCH-for-5.2? 1/1] Acceptance tests: bump Fedora to 32
Date: Wed, 2 Dec 2020 16:57:47 -0500 [thread overview]
Message-ID: <20201202215747.2719507-2-crosa@redhat.com> (raw)
In-Reply-To: <20201202215747.2719507-1-crosa@redhat.com>
Currently in use Fedora 31 has been moved out of the standard download
locations that are supported by the functionality provided by
avocado.utils.vmimage. So right now, the boot_linux.py tests will get
canceled by not being able to find those specific images.
Ideally, this would be bumped to version 33. But, I've found issues
with the aarch64 images, with various systemd services failing to
start. So to keep all archs consistent, I've settled on 32.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
---
tests/acceptance/boot_linux.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/acceptance/boot_linux.py b/tests/acceptance/boot_linux.py
index 1da4a53d6a..0824de008e 100644
--- a/tests/acceptance/boot_linux.py
+++ b/tests/acceptance/boot_linux.py
@@ -42,13 +42,13 @@ class BootLinuxBase(Test):
vmimage.QEMU_IMG = qemu_img
self.log.info('Downloading/preparing boot image')
- # Fedora 31 only provides ppc64le images
+ # Fedora 32 only provides ppc64le images
image_arch = self.arch
if image_arch == 'ppc64':
image_arch = 'ppc64le'
try:
boot = vmimage.get(
- 'fedora', arch=image_arch, version='31',
+ 'fedora', arch=image_arch, version='32',
checksum=self.chksum,
algorithm='sha256',
cache_dir=self.cache_dirs[0],
@@ -111,7 +111,7 @@ class BootLinuxX8664(BootLinux):
:avocado: tags=arch:x86_64
"""
- chksum = 'e3c1b309d9203604922d6e255c2c5d098a309c2d46215d8fc026954f3c5c27a0'
+ chksum = '423a4ce32fa32c50c11e3d3ff392db97a762533b81bef9d00599de518a7469c8'
def test_pc_i440fx_tcg(self):
"""
@@ -161,7 +161,7 @@ class BootLinuxAarch64(BootLinux):
:avocado: tags=machine:gic-version=2
"""
- chksum = '1e18d9c0cf734940c4b5d5ec592facaed2af0ad0329383d5639c997fdf16fe49'
+ chksum = 'b367755c664a2d7a26955bbfff985855adfa2ca15e908baf15b4b176d68d3967'
def add_common_args(self):
self.vm.add_args('-bios',
@@ -217,7 +217,7 @@ class BootLinuxPPC64(BootLinux):
:avocado: tags=arch:ppc64
"""
- chksum = '7c3528b85a3df4b2306e892199a9e1e43f991c506f2cc390dc4efa2026ad2f58'
+ chksum = 'dd989a078d641713c55720ba3e4320b204ade6954e2bfe4570c8058dc36e2e5d'
def test_pseries_tcg(self):
"""
@@ -235,7 +235,7 @@ class BootLinuxS390X(BootLinux):
:avocado: tags=arch:s390x
"""
- chksum = '4caaab5a434fd4d1079149a072fdc7891e354f834d355069ca982fdcaf5a122d'
+ chksum = '93e49b98fa016797a6864a95cbb7beaec86ffd61dbcd42a951158ae732dae1ec'
@skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_s390_ccw_virtio_tcg(self):
--
2.25.4
next prev parent reply other threads:[~2020-12-02 21:59 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-02 21:57 [PATCH-for-5.2? 0/1] Acceptance tests: bump Fedora to 32 Cleber Rosa
2020-12-02 21:57 ` Cleber Rosa [this message]
2020-12-03 9:37 ` [PATCH-for-5.2? 1/1] " Philippe Mathieu-Daudé
2020-12-03 16:50 ` Cleber Rosa
2020-12-03 17:02 ` Daniel P. Berrangé
2020-12-03 17:29 ` Cleber Rosa
2020-12-03 17:36 ` Daniel P. Berrangé
2020-12-03 18:13 ` Willian Rampazzo
2020-12-04 14:08 ` Philippe Mathieu-Daudé
2020-12-04 14:19 ` Daniel P. Berrangé
2020-12-03 10:09 ` [PATCH-for-5.2? 0/1] " Peter Maydell
2020-12-03 16:39 ` Cleber Rosa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201202215747.2719507-2-crosa@redhat.com \
--to=crosa@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=bleal@redhat.com \
--cc=ehabkost@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
--cc=wainersm@redhat.com \
--cc=wrampazz@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).