From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH v2 07/11] CI: Move trixie targets to generic test cases
Date: Mon, 29 Jun 2026 12:46:20 +0300 [thread overview]
Message-ID: <20260629094624.855927-8-amikan@ilbers.de> (raw)
In-Reply-To: <20260629094624.855927-1-amikan@ilbers.de>
Debian Trixie is stable and no more covered with KFAIL, so no need in
test case separation.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
testsuite/citest.py | 102 +++++++++++++++++++-------------------------
1 file changed, 45 insertions(+), 57 deletions(-)
diff --git a/testsuite/citest.py b/testsuite/citest.py
index 250c01c6..c46d4ca6 100644
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -258,6 +258,8 @@ class CrossTest(CIBaseTest):
'mc:qemuarm-buster:isar-image-ci',
'mc:qemuarm-bullseye:isar-image-ci',
'mc:qemuarm-bookworm:isar-image-ci',
+ 'mc:qemuamd64-trixie:isar-image-base',
+ 'mc:qemuarm64-trixie:isar-image-base',
'mc:qemuarm64-focal:isar-image-base',
'mc:nanopi-neo-efi-bookworm:isar-image-base',
]
@@ -361,24 +363,6 @@ class CrossTest(CIBaseTest):
script='test_systemd_unit.sh getty.target 10',
)
- def test_cross_debsrc(self):
- targets = [
- 'mc:qemuarm64-bookworm:isar-image-ci',
- ]
-
- self.init()
- # only build a single custom package to speedup test
- self.perform_build_test(targets, debsrc_cache=True, image_install='cowsay')
-
- def test_cross_trixie(self):
- targets = [
- 'mc:qemuamd64-trixie:isar-image-base',
- 'mc:qemuarm64-trixie:isar-image-base',
- ]
-
- self.init()
- self.perform_build_test(targets, cross=False)
-
def test_run_amd64_trixie(self):
"""
:avocado: tags=startvm
@@ -393,6 +377,15 @@ class CrossTest(CIBaseTest):
self.init()
self.vm_start('arm64', 'trixie')
+ def test_cross_debsrc(self):
+ targets = [
+ 'mc:qemuarm64-bookworm:isar-image-ci',
+ ]
+
+ self.init()
+ # only build a single custom package to speedup test
+ self.perform_build_test(targets, debsrc_cache=True, image_install='cowsay')
+
def test_cross_kselftest(self):
targets = [
'mc:qemuarm-buster:kselftest',
@@ -783,6 +776,10 @@ class NoCrossTest(CIBaseTest):
'mc:qemuamd64-iso-bookworm:isar-image-ci',
'mc:qemui386-bookworm:isar-image-base',
'mc:qemumipsel-bookworm:isar-image-ci',
+ 'mc:qemuamd64-trixie:isar-image-base',
+ 'mc:qemuarm64-trixie:isar-image-base',
+ 'mc:qemuarm-trixie:isar-image-base',
+ 'mc:qemuriscv64-trixie:isar-image-base',
'mc:hikey-bookworm:isar-image-base',
'mc:hikey-trixie:isar-image-base',
'mc:beagleplay-bookworm:isar-image-base',
@@ -968,6 +965,34 @@ class NoCrossTest(CIBaseTest):
script='test_kernel_module.sh example_module',
)
+ def test_run_arm_trixie(self):
+ """
+ :avocado: tags=startvm
+ """
+ self.init()
+ self.vm_start('arm', 'trixie')
+
+ def test_run_arm64_trixie(self):
+ """
+ :avocado: tags=startvm
+ """
+ self.init()
+ self.vm_start('arm64', 'trixie')
+
+ def test_run_amd64_trixie(self):
+ """
+ :avocado: tags=startvm
+ """
+ self.init()
+ self.vm_start('amd64', 'trixie')
+
+ def test_run_riscv64_trixie(self):
+ """
+ :avocado: tags=startvm
+ """
+ self.init()
+ self.vm_start('riscv64', 'trixie')
+
def test_run_amd64_bookworm_iso_base(self):
"""
:avocado: tags=startvm
@@ -1022,51 +1047,14 @@ class NoCrossTest(CIBaseTest):
self.init()
self.perform_build_test(targets, cross=False, debsrc_cache=True)
- def test_nocross_trixie(self):
- targets = [
- 'mc:qemuamd64-trixie:isar-image-base',
- 'mc:qemuarm64-trixie:isar-image-base',
- 'mc:qemuarm-trixie:isar-image-base',
- 'mc:qemuriscv64-trixie:isar-image-base',
- ]
-
- self.init()
- self.perform_build_test(targets, cross=False)
-
+ def test_nocross_riscv_trixie(self):
targets = [
'mc:sifive-fu540-trixie:isar-image-base',
'mc:starfive-visionfive2-trixie:isar-image-base',
]
- self.perform_build_test(targets, cross=False)
-
- def test_run_arm_trixie(self):
- """
- :avocado: tags=startvm
- """
- self.init()
- self.vm_start('arm', 'trixie')
-
- def test_run_arm64_trixie(self):
- """
- :avocado: tags=startvm
- """
- self.init()
- self.vm_start('arm64', 'trixie')
-
- def test_run_amd64_trixie(self):
- """
- :avocado: tags=startvm
- """
- self.init()
- self.vm_start('amd64', 'trixie')
-
- def test_run_riscv64_trixie(self):
- """
- :avocado: tags=startvm
- """
self.init()
- self.vm_start('riscv64', 'trixie')
+ self.perform_build_test(targets, cross=False)
def test_nocross_sid(self):
targets = [
--
2.34.1
--
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20260629094624.855927-8-amikan%40ilbers.de.
next prev parent reply other threads:[~2026-06-29 9:46 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 9:46 [PATCH v2 00/11] Add new targets and required fixes Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 01/11] grub: Remove obsolete efi_uga module for new distros Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 02/11] CI: Freeze setuptools package version for avocado compatibility Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 03/11] CI: Fix errors reporting during startvm Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 04/11] meta: Add base distro overrides Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 05/11] linux-kernel: Reverse linux-libc-dev package arch selection logic Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 06/11] trixie: Split missing drivers hook recipes Anton Mikanovich
2026-06-29 9:46 ` Anton Mikanovich [this message]
2026-06-29 9:46 ` [PATCH v2 08/11] CI: Run startvm for all qemu targets Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 09/11] meta: Add Ubuntu 26.04 (Resolute Raccoon) support Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 10/11] testsuite: Cover Debian Trixie RISCV64 QEMU target with CI Anton Mikanovich
2026-06-29 9:46 ` [PATCH v2 11/11] testsuite: Cover Debian Forky " Anton Mikanovich
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=20260629094624.855927-8-amikan@ilbers.de \
--to=amikan@ilbers.de \
--cc=isar-users@googlegroups.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