From: Zhihang Wei <wzh@ilbers.de>
To: isar-users@googlegroups.com
Subject: [PATCH v2 1/3] testsuite: Allow test cases to fail due to unresolved DTB conflicts
Date: Thu, 30 Apr 2026 15:10:55 +0200 [thread overview]
Message-ID: <20260430131057.2960671-2-wzh@ilbers.de> (raw)
In-Reply-To: <20260430131057.2960671-1-wzh@ilbers.de>
Since the patches resolving DTB deployment conflicts have been reverted,
the affected test cases are allowed to fail until a proper fix is in
place. These test cases are also moved to a separate TMP dir to prevent
them from affecting other test cases.
Signed-off-by: Zhihang Wei <wzh@ilbers.de>
---
testsuite/citest.py | 24 +++++++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
diff --git a/testsuite/citest.py b/testsuite/citest.py
index fc6ec24c..b3866675 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -243,7 +243,6 @@ class CrossTest(CIBaseTest):
'mc:qemuarm-bookworm:isar-image-ci',
'mc:qemuarm64-focal:isar-image-base',
'mc:nanopi-neo-efi-bookworm:isar-image-base',
- 'mc:phyboard-mira-trixie:isar-image-base',
]
self.init()
@@ -416,6 +415,16 @@ class CrossTest(CIBaseTest):
self.perform_build_test(targets, lines=lines,
image_install='test-all-deponlycross')
+ def test_cross_mira_trixie(self):
+ targets = [
+ 'mc:phyboard-mira-trixie:isar-image-base',
+ ]
+
+ self.init()
+ self.move_in_build_dir('tmp', 'tmp_cross')
+ self.perform_build_test(targets)
+ self.move_in_build_dir('tmp', 'tmp_cross_mira_trixie')
+
class PrebuiltTest(CIBaseTest):
"""
Tests associated with prebuilt artifacts (containers, debs).
@@ -697,7 +706,11 @@ class DtbDeployTest(CIBaseTest):
]
self.init()
- self.perform_build_test(targets, image_install='')
+ self.move_in_build_dir('tmp', 'tmp_before_dtbdeploy')
+ try:
+ self.perform_build_test(targets, image_install='')
+ except exceptions.TestFail:
+ self.cancel('KFAIL')
def test_dtb_deploy_images(self):
"""
@@ -709,7 +722,12 @@ class DtbDeployTest(CIBaseTest):
]
self.init()
- self.perform_build_test(targets, image_install='')
+ try:
+ self.perform_build_test(targets, image_install='')
+ except exceptions.TestFail:
+ self.cancel('KFAIL')
+ finally:
+ self.move_in_build_dir('tmp', 'tmp_dtbdeploy')
class NoCrossTest(CIBaseTest):
--
2.39.5
--
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/20260430131057.2960671-2-wzh%40ilbers.de.
next prev parent reply other threads:[~2026-04-30 13:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-30 13:10 [PATCH v2 0/3] Revert "prefix DTB files with PN in deploy dir" Zhihang Wei
2026-04-30 13:10 ` Zhihang Wei [this message]
2026-04-30 13:10 ` [PATCH v2 2/3] " Zhihang Wei
2026-04-30 13:10 ` [PATCH v2 3/3] doc: Restore API-CHANGELOG entry for artifacts naming and path changes Zhihang Wei
2026-05-04 9:54 ` [PATCH v2 0/3] Revert "prefix DTB files with PN in deploy dir" Zhihang Wei
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=20260430131057.2960671-2-wzh@ilbers.de \
--to=wzh@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