From: Leonardo Sandoval Date: Mon, 9 Jan 2017 17:45:53 +0000 (-0600) Subject: selftest: runtime-test: skip image-install test for poky-tiny X-Git-Tag: uninative-1.5~857 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c2b1c562db160876fc3e1ee8b15bd07136d6ea7a;p=openembedded-core.git selftest: runtime-test: skip image-install test for poky-tiny poky-tiny cannot build full-cmdline image, so skip this test in this case. Signed-off-by: Leonardo Sandoval Signed-off-by: Ross Burton --- diff --git a/meta/lib/oeqa/selftest/runtime-test.py b/meta/lib/oeqa/selftest/runtime-test.py index 20caa97d16..a105f3f579 100644 --- a/meta/lib/oeqa/selftest/runtime-test.py +++ b/meta/lib/oeqa/selftest/runtime-test.py @@ -95,6 +95,8 @@ class TestImage(oeSelfTest): Product: oe-core Author: Mariano Lopez """ + if get_bb_var('DISTRO') == 'poky-tiny': + self.skipTest('core-image-full-cmdline not buildable for poky-tiny') features = 'INHERIT += "testimage"\n' features += 'TEST_SUITES = "ping ssh selftest"\n'