|
From: | Thomas Huth |
Subject: | Re: [PULL 02/18] tests/avocado: use the new snapshots for testing |
Date: | Fri, 28 Apr 2023 14:08:09 +0200 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 |
On 27/04/2023 17.44, Alex Bennée wrote:
The tuxboot images now have a stable snapshot URL so we can enable the checksums and remove the avocado warnings. We will have to update as old snapshots retire but that won't be too frequent. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: Thomas Huth <thuth@redhat.com> Message-Id: <20230424092249.58552-3-alex.bennee@linaro.org>
...
@@ -316,7 +387,12 @@ def test_ppc64(self): :avocado: tags=extradev:driver=spapr-vscsi :avocado: tags=root:sda """ - self.common_tuxrun(drive="scsi-hd") + sums = { "rootfs.ext4.zst" : + "1d953e81a4379e537fc8e41e05a0a59d9b453eef97aa03d47866c6c45b00bdff", + "vmlinux" : + "f22a9b9e924174a4c199f4c7e5d91a2339fcfe51c6eafd0907dc3e09b64ab728" } + + self.common_tuxrun(csums=sums, drive="scsi-hd")def test_ppc64le(self):""" @@ -329,7 +405,12 @@ def test_ppc64le(self): :avocado: tags=extradev:driver=spapr-vscsi :avocado: tags=root:sda """ - self.common_tuxrun(drive="scsi-hd") + sums = { "rootfs.ext4.zst" : + "b442678c93fb8abe1f7d3bfa20556488de6b475c22c8fed363f42cf81a0a3906", + "vmlinux" : + "979eb61b445a010fb13e2b927126991f8ceef9c590fa2be0996c00e293e80cf2" } + + self.common_tuxrun(csums=sums, drive="scsi-hd")
Hi Alex,when I run the manual avocado-cfi-ppc64-s390x test on gitlab, the ppc64 and ppc64le tuxrun tests are now failing for me:
https://gitlab.com/thuth/qemu/-/jobs/4196177779#L758 Are they working for you? Thomas
[Prev in Thread] | Current Thread | [Next in Thread] |