diff mbox series

[v9,10/11] oeqa selftest wic.py: mark efi tests to run on x86_64 build host only

Message ID 20241017084552.182136-11-mikko.rapeli@linaro.org
State New
Headers show
Series systemd uki support | expand

Commit Message

Mikko Rapeli Oct. 17, 2024, 8:45 a.m. UTC
aarch64 build host fails to boot aarch64 qemu target with u-boot uefi
firmware currently.

Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
---
 meta/lib/oeqa/selftest/cases/wic.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/wic.py b/meta/lib/oeqa/selftest/cases/wic.py
index e5caef74c4..664d1aa427 100644
--- a/meta/lib/oeqa/selftest/cases/wic.py
+++ b/meta/lib/oeqa/selftest/cases/wic.py
@@ -20,7 +20,7 @@  from tempfile import TemporaryDirectory
 
 from oeqa.selftest.case import OESelftestTestCase
 from oeqa.core.decorator import OETestTag
-from oeqa.core.decorator.data import skipIfNotArch
+from oeqa.core.decorator.data import skipIfNotArch, skipIfNotBuildArch
 from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars, runqemu
 
 
@@ -1342,6 +1342,7 @@  UKI_CMDLINE = "rootwait root=LABEL=root console=${KERNEL_CONSOLE}"
             self.assertEqual(output, '0')
 
     @skipIfNotArch(['aarch64'])
+    @skipIfNotBuildArch(['x86_64'])
     @OETestTag("runqemu")
     def test_efi_plugin_plain_systemd_boot_qemu_aarch64(self):
         """Test plain systemd-boot in qemu with systemd"""