From: "Alex Bennée" <alex.bennee@linaro.org>
To: Thomas Huth <thuth@redhat.com>
Cc: qemu-devel@nongnu.org,
"qemu-ppc@nongnu.org" <qemu-ppc@nongnu.org>,
richard.henderson@linaro.org,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Beraldo Leal" <bleal@redhat.com>,
"Cleber Rosa" <crosa@redhat.com>,
"Daniel Henrique Barboza" <danielhb413@gmail.com>,
"Cédric Le Goater" <clg@kaod.org>
Subject: Re: [PULL 02/18] tests/avocado: use the new snapshots for testing
Date: Fri, 28 Apr 2023 17:43:56 +0100 [thread overview]
Message-ID: <87a5ysardt.fsf@linaro.org> (raw)
In-Reply-To: <c5e8ab71-8840-b420-b6b2-cab1efb44ab3@redhat.com>
Thomas Huth <thuth@redhat.com> writes:
> 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?
Locally yes. I guess its time to spin up some VMs
>
> Thomas
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
next prev parent reply other threads:[~2023-04-28 16:45 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-27 15:44 [PULL 00/18] testing and doc updates Alex Bennée
2023-04-27 15:44 ` [PULL 01/18] tests/requirements.txt: bump up avocado-framework version to 101.0 Alex Bennée
2023-04-27 15:44 ` [PULL 02/18] tests/avocado: use the new snapshots for testing Alex Bennée
2023-04-28 12:08 ` Thomas Huth
2023-04-28 16:43 ` Alex Bennée [this message]
2023-04-27 15:44 ` [PULL 03/18] tests/avocado: Add set of boot tests on SBSA-ref Alex Bennée
2023-04-28 10:33 ` Thomas Huth
2023-07-10 12:10 ` Thomas Huth
2023-04-27 15:44 ` [PULL 04/18] gitlab-ci: Avoid to re-run "configure" in the device-crash-test jobs Alex Bennée
2023-04-27 15:44 ` [PULL 05/18] scripts/device-crash-test: Add a parameter to run with TCG only Alex Bennée
2023-04-27 15:44 ` [PULL 06/18] qemu-options: finesse the recommendations around -blockdev Alex Bennée
2023-04-27 15:44 ` [PULL 07/18] .gitlab-ci.d/cirrus: Drop the CI job for compiling with FreeBSD 12 Alex Bennée
2023-04-27 15:45 ` [PULL 08/18] tests/avocado: Make ssh_command_output_contains() globally available Alex Bennée
2023-04-27 15:45 ` [PULL 09/18] tests/avocado/machine_aspeed: Fix the broken ast2[56]00_evb_sdk tests Alex Bennée
2023-04-27 15:45 ` [PULL 10/18] MAINTAINERS: Cover tests/avocado/machine_aspeed.py Alex Bennée
2023-04-27 15:45 ` [PULL 11/18] avocado_qemu/__init__.py: factor out the qemu-img finding Alex Bennée
2023-04-27 15:45 ` [PULL 12/18] tests/avocado/tuxrun_baselines.py: improve code coverage for ppc64 Alex Bennée
2023-04-27 15:45 ` [PULL 13/18] tests/tcg: limit the scope of the plugin tests Alex Bennée
2023-04-27 15:45 ` [PULL 14/18] qemu-options.hx: Update descriptions of memory options for NUMA node Alex Bennée
2023-04-27 15:45 ` [PULL 15/18] docs/system: remove excessive punctuation from guest-loader docs Alex Bennée
2023-04-27 15:45 ` [PULL 16/18] docs/devel: make a statement about includes Alex Bennée
2023-04-27 15:45 ` [PULL 17/18] docs/devel: mention the spacing requirement for QOM Alex Bennée
2023-04-27 15:45 ` [PULL 18/18] docs/style: call out the use of GUARD macros Alex Bennée
2023-04-28 7:34 ` [PULL 00/18] testing and doc updates Richard Henderson
2023-05-02 11:46 ` Peter Maydell
2023-05-02 12:21 ` Thomas Huth
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=87a5ysardt.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=bleal@redhat.com \
--cc=clg@kaod.org \
--cc=crosa@redhat.com \
--cc=danielhb413@gmail.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=thuth@redhat.com \
--cc=wainersm@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).