public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH v2] testsuite: Add KFAIL to qemuarm64-resolute
@ 2026-07-24 15:13 Zhihang Wei
  2026-07-28 15:32 ` Zhihang Wei
  0 siblings, 1 reply; 2+ messages in thread
From: Zhihang Wei @ 2026-07-24 15:13 UTC (permalink / raw)
  To: isar-users

Currently, the following error occurs when building qemuarm64-resolute:
ERROR: mc:qemuarm64-resolute:example-module-generic-1.0-r0 do_dpkg_build: ExecutionError('/build/tmp/work/ubuntu-resolute-arm64/example-module-generic/1.0-r0/temp/run.dpkg_runbuild.155703', 3, None, None)
The task log shows:
tar: src/Makefile: Cannot open: Function not implemented
tar: src/debian: Cannot mkdir: Function not implemented
tar: src/debian/changelog: Cannot open: Function not implemented
tar: src/debian/control: Cannot open: Function not implemented
tar: src/debian/control.tmpl: Cannot open: Function not implemented
tar: src/debian/postinst: Cannot open: Function not implemented
tar: src/debian/rules: Cannot open: Function not implemented
tar: src/debian/rules.tmpl: Cannot open: Function not implemented
tar: src/example-module.c: Cannot open: Function not implemented
tar: Exiting with failure status due to previous errors
dpkg-source: error: tar -xf - --no-same-permissions --no-same-owner subprocess failed with exit status 2
E: FAILED [dpkg-source died]

This issue started to occur after Ubuntu updated tar to
tar_1.35+dfsg-4ubuntu0.2 and is also present in tar_1.35+dfsg-4ubuntu0.3
and tar_1.35+dfsg-4ubuntu0.4.

Mark this target as KFAIL until the Ubuntu tar issue is fixed.

Signed-off-by: Zhihang Wei <wzh@ilbers.de>
---

Changes since v1:
- Put vm_start test right after the build test case.

 testsuite/citest.py | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 613cd789..66aaad65 100644
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -262,7 +262,6 @@ class CrossTest(CIBaseTest):
             'mc:qemuarm64-trixie:isar-image-base',
             'mc:qemuarm64-focal:isar-image-base',
             'mc:nanopi-neo-efi-bookworm:isar-image-base',
-            'mc:qemuarm64-resolute:isar-image-base',
             'mc:qemuamd64-resolute:isar-image-base',
         ]
 
@@ -386,23 +385,34 @@ class CrossTest(CIBaseTest):
         self.init()
         self.vm_start('arm64', 'focal')
 
-    # TODO: broken because of moving to UEFI
-    def test_run_arm64_resolute(self):
+    def test_run_amd64_resolute(self):
         """
         :avocado: tags=startvm
         """
+        self.init()
+        self.vm_start('amd64', 'resolute')
+
+    def test_cross_arm64_resolute(self):
+        targets = [
+            'mc:qemuarm64-resolute:isar-image-base',
+        ]
+
         self.init()
         try:
-            self.vm_start('arm64', 'resolute')
+            self.perform_build_test(targets)
         except exceptions.TestFail:
             self.cancel('KFAIL')
 
-    def test_run_amd64_resolute(self):
+    # TODO: broken because of moving to UEFI
+    def test_run_arm64_resolute(self):
         """
         :avocado: tags=startvm
         """
         self.init()
-        self.vm_start('amd64', 'resolute')
+        try:
+            self.vm_start('arm64', 'resolute')
+        except exceptions.TestFail:
+            self.cancel('KFAIL')
 
     def test_cross_debsrc(self):
         targets = [
-- 
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/20260724151325.764371-1-wzh%40ilbers.de.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] testsuite: Add KFAIL to qemuarm64-resolute
  2026-07-24 15:13 [PATCH v2] testsuite: Add KFAIL to qemuarm64-resolute Zhihang Wei
@ 2026-07-28 15:32 ` Zhihang Wei
  0 siblings, 0 replies; 2+ messages in thread
From: Zhihang Wei @ 2026-07-28 15:32 UTC (permalink / raw)
  To: isar-users

Applied to next.

Zhihang

On 7/24/26 17:13, Zhihang Wei wrote:
> Currently, the following error occurs when building qemuarm64-resolute:
> ERROR: mc:qemuarm64-resolute:example-module-generic-1.0-r0 do_dpkg_build: ExecutionError('/build/tmp/work/ubuntu-resolute-arm64/example-module-generic/1.0-r0/temp/run.dpkg_runbuild.155703', 3, None, None)
> The task log shows:
> tar: src/Makefile: Cannot open: Function not implemented
> tar: src/debian: Cannot mkdir: Function not implemented
> tar: src/debian/changelog: Cannot open: Function not implemented
> tar: src/debian/control: Cannot open: Function not implemented
> tar: src/debian/control.tmpl: Cannot open: Function not implemented
> tar: src/debian/postinst: Cannot open: Function not implemented
> tar: src/debian/rules: Cannot open: Function not implemented
> tar: src/debian/rules.tmpl: Cannot open: Function not implemented
> tar: src/example-module.c: Cannot open: Function not implemented
> tar: Exiting with failure status due to previous errors
> dpkg-source: error: tar -xf - --no-same-permissions --no-same-owner subprocess failed with exit status 2
> E: FAILED [dpkg-source died]
>
> This issue started to occur after Ubuntu updated tar to
> tar_1.35+dfsg-4ubuntu0.2 and is also present in tar_1.35+dfsg-4ubuntu0.3
> and tar_1.35+dfsg-4ubuntu0.4.
>
> Mark this target as KFAIL until the Ubuntu tar issue is fixed.
>
> Signed-off-by: Zhihang Wei <wzh@ilbers.de>
> ---
>
> Changes since v1:
> - Put vm_start test right after the build test case.
>
>   testsuite/citest.py | 22 ++++++++++++++++------
>   1 file changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/testsuite/citest.py b/testsuite/citest.py
> index 613cd789..66aaad65 100644
> --- a/testsuite/citest.py
> +++ b/testsuite/citest.py
> @@ -262,7 +262,6 @@ class CrossTest(CIBaseTest):
>               'mc:qemuarm64-trixie:isar-image-base',
>               'mc:qemuarm64-focal:isar-image-base',
>               'mc:nanopi-neo-efi-bookworm:isar-image-base',
> -            'mc:qemuarm64-resolute:isar-image-base',
>               'mc:qemuamd64-resolute:isar-image-base',
>           ]
>   
> @@ -386,23 +385,34 @@ class CrossTest(CIBaseTest):
>           self.init()
>           self.vm_start('arm64', 'focal')
>   
> -    # TODO: broken because of moving to UEFI
> -    def test_run_arm64_resolute(self):
> +    def test_run_amd64_resolute(self):
>           """
>           :avocado: tags=startvm
>           """
> +        self.init()
> +        self.vm_start('amd64', 'resolute')
> +
> +    def test_cross_arm64_resolute(self):
> +        targets = [
> +            'mc:qemuarm64-resolute:isar-image-base',
> +        ]
> +
>           self.init()
>           try:
> -            self.vm_start('arm64', 'resolute')
> +            self.perform_build_test(targets)
>           except exceptions.TestFail:
>               self.cancel('KFAIL')
>   
> -    def test_run_amd64_resolute(self):
> +    # TODO: broken because of moving to UEFI
> +    def test_run_arm64_resolute(self):
>           """
>           :avocado: tags=startvm
>           """
>           self.init()
> -        self.vm_start('amd64', 'resolute')
> +        try:
> +            self.vm_start('arm64', 'resolute')
> +        except exceptions.TestFail:
> +            self.cancel('KFAIL')
>   
>       def test_cross_debsrc(self):
>           targets = [

-- 
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/2acd1dff-cb13-4f0b-96ab-3a56d527861f%40ilbers.de.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-07-28 15:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-24 15:13 [PATCH v2] testsuite: Add KFAIL to qemuarm64-resolute Zhihang Wei
2026-07-28 15:32 ` Zhihang Wei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox