aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-yocto-bsp/lib/oeqa/selftest/gummiboot.py3
-rw-r--r--meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/gummiboot.py b/meta-yocto-bsp/lib/oeqa/selftest/gummiboot.py
index 00aa36f60d9..63643e563ec 100644
--- a/meta-yocto-bsp/lib/oeqa/selftest/gummiboot.py
+++ b/meta-yocto-bsp/lib/oeqa/selftest/gummiboot.py
@@ -25,9 +25,10 @@ class Gummiboot(oeSelfTest):
"""
# Build a genericx86-64/efi gummiboot image
+ if self.distro == 'poky-tiny':
+ self.skipTest('Machine %s not compatible with linux-yocto-tiny' % get_bb_var('MACHINE'))
bitbake('syslinux syslinux-native parted-native dosfstools-native mtools-native core-image-minimal')
-
@testcase(1101)
def test_efi_gummiboot_images_can_be_built(self):
"""
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py b/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py
index f7f74db7e24..52b33edd890 100644
--- a/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py
+++ b/meta-yocto-bsp/lib/oeqa/selftest/systemd_boot.py
@@ -25,9 +25,10 @@ class Systemdboot(oeSelfTest):
"""
# Build a genericx86-64/efi gummiboot image
+ if self.distro == 'poky-tiny':
+ self.skipTest('Machine %s not compatible with linux-yocto-tiny' % get_bb_var('MACHINE'))
bitbake('mtools-native core-image-minimal')
-
@testcase(1445)
def test_efi_systemdboot_images_can_be_built(self):
"""