@@ -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"""
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(-)