From: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
To: qemu-devel@nongnu.org
Cc: qemu-arm@nongnu.org, "Leif Lindholm" <quic_llindhol@quicinc.com>,
"Radoslaw Biernacki" <rad@semihalf.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Cleber Rosa" <crosa@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Beraldo Leal" <bleal@redhat.com>,
"Marcin Juszkiewicz" <marcin.juszkiewicz@linaro.org>
Subject: [PATCH v3 1/2] tests/avocado: sbsa-ref: add FreeBSD tests
Date: Mon, 24 Jun 2024 18:20:43 +0200 [thread overview]
Message-ID: <20240624-b4-move-to-freebsd-v3-1-71496bf119d4@linaro.org> (raw)
In-Reply-To: <20240624-b4-move-to-freebsd-v3-0-71496bf119d4@linaro.org>
FreeBSD has longer support cycle for stable release (14.x EoL in 2028)
than OpenBSD (7.3 we used is already EoL). Also bugfixes are backported
so we can stay on 14.x for longer. Tests done on OpenBSD will now be
done using FreeBSD.
OpenBSD 7.3 stays with Cortex-A57 test for local runs only.
Moved from Neoverse-N1 to Neoverse-N2 as sbsa-ref defaults were changed.
Timeout messages expanded to mention being affected by PAuth emulation.
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
---
tests/avocado/machine_aarch64_sbsaref.py | 75 ++++++++++++++++++++++++--------
1 file changed, 56 insertions(+), 19 deletions(-)
diff --git a/tests/avocado/machine_aarch64_sbsaref.py b/tests/avocado/machine_aarch64_sbsaref.py
index 6bb82f2a03..bb2c098aac 100644
--- a/tests/avocado/machine_aarch64_sbsaref.py
+++ b/tests/avocado/machine_aarch64_sbsaref.py
@@ -1,4 +1,4 @@
-# Functional test that boots a Linux kernel and checks the console
+# Functional test that boots a kernel and checks the console
#
# SPDX-FileCopyrightText: 2023-2024 Linaro Ltd.
# SPDX-FileContributor: Philippe Mathieu-Daudé <philmd@linaro.org>
@@ -8,7 +8,7 @@
import os
-from avocado import skipUnless
+from avocado import skipIf, skipUnless
from avocado.utils import archive
from avocado_qemu import QemuSystemTest
@@ -165,7 +165,8 @@ def test_sbsaref_alpine_linux_max_pauth_impdef(self):
"""
self.boot_alpine_linux("max,pauth-impdef=on")
- @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
+ @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'),
+ 'Test might timeout due to PAuth emulation')
def test_sbsaref_alpine_linux_max(self):
"""
:avocado: tags=cpu:max
@@ -173,7 +174,6 @@ def test_sbsaref_alpine_linux_max(self):
"""
self.boot_alpine_linux("max")
-
# This tests the whole boot chain from EFI to Userspace
# We only boot a whole OS for the current top level CPU and GIC
# Other test profiles should use more minimal boots
@@ -200,6 +200,9 @@ def boot_openbsd73(self, cpu):
"Welcome to the OpenBSD/arm64"
" 7.3 installation program.")
+
+ # we keep OpenBSD 7.3 on Cortex-A57 by request
+ @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
def test_sbsaref_openbsd73_cortex_a57(self):
"""
:avocado: tags=cpu:cortex-a57
@@ -207,32 +210,66 @@ def test_sbsaref_openbsd73_cortex_a57(self):
"""
self.boot_openbsd73("cortex-a57")
- def test_sbsaref_openbsd73_neoverse_n1(self):
+
+ # This tests the whole boot chain from EFI to Userspace
+ # We only boot a whole OS for the current top level CPU and GIC
+ # Other test profiles should use more minimal boots
+ def boot_freebsd(self, cpu):
+ self.fetch_firmware()
+
+ img_url = (
+ "https://download.freebsd.org/releases/arm64/aarch64/ISO-IMAGES/"
+ "14.1/FreeBSD-14.1-RELEASE-arm64-aarch64-bootonly.iso"
+ )
+
+ img_hash = "44cdbae275ef1bb6dab1d5fbb59473d4f741e1c8ea8a80fd9e906b531d6ad461"
+ img_path = self.fetch_asset(img_url, algorithm="sha256", asset_hash=img_hash)
+
+ self.vm.set_console()
+ self.vm.add_args(
+ "-cpu",
+ cpu,
+ "-drive",
+ f"file={img_path},format=raw",
+ )
+
+ self.vm.launch()
+ wait_for_console_pattern(self, "Welcome to FreeBSD!")
+
+ def test_sbsaref_freebsd_cortex_a57(self):
"""
- :avocado: tags=cpu:neoverse-n1
- :avocado: tags=os:openbsd
+ :avocado: tags=cpu:cortex-a57
+ :avocado: tags=os:freebsd
+ """
+ self.boot_freebsd("cortex-a57")
+
+ # We use Neoverse-N2 as default cpu
+ def test_sbsaref_freebsd_neoverse_n2(self):
"""
- self.boot_openbsd73("neoverse-n1")
+ :avocado: tags=cpu:neoverse-n2
+ :avocado: tags=os:freebsd
+ """
+ self.boot_freebsd("neoverse-n2")
- def test_sbsaref_openbsd73_max_pauth_off(self):
+ def test_sbsaref_freebsd_max_pauth_off(self):
"""
:avocado: tags=cpu:max
- :avocado: tags=os:openbsd
+ :avocado: tags=os:freebsd
"""
- self.boot_openbsd73("max,pauth=off")
+ self.boot_freebsd("max,pauth=off")
- @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
- def test_sbsaref_openbsd73_max_pauth_impdef(self):
+ def test_sbsaref_freebsd_max_pauth_impdef(self):
"""
:avocado: tags=cpu:max
- :avocado: tags=os:openbsd
+ :avocado: tags=os:freebsd
"""
- self.boot_openbsd73("max,pauth-impdef=on")
+ self.boot_freebsd("max,pauth-impdef=on")
- @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
- def test_sbsaref_openbsd73_max(self):
+ @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'),
+ 'Test might timeout due to PAuth emulation')
+ def test_sbsaref_freebsd_max(self):
"""
:avocado: tags=cpu:max
- :avocado: tags=os:openbsd
+ :avocado: tags=os:freebsd
"""
- self.boot_openbsd73("max")
+ self.boot_freebsd("max")
--
2.45.2
next prev parent reply other threads:[~2024-06-24 16:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-24 16:20 [PATCH v3 0/2] tests/avocado: updates for sbsa-ref testing Marcin Juszkiewicz
2024-06-24 16:20 ` Marcin Juszkiewicz [this message]
2024-07-01 13:37 ` [PATCH v3 1/2] tests/avocado: sbsa-ref: add FreeBSD tests Peter Maydell
2024-07-01 17:00 ` Philippe Mathieu-Daudé
2024-06-24 16:20 ` [PATCH v3 2/2] tests/avocado: add test for default sbsa-ref cpu Marcin Juszkiewicz
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=20240624-b4-move-to-freebsd-v3-1-71496bf119d4@linaro.org \
--to=marcin.juszkiewicz@linaro.org \
--cc=bleal@redhat.com \
--cc=crosa@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quic_llindhol@quicinc.com \
--cc=rad@semihalf.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).