From 0bb40f0bb9f6aff00b54a31f5f4f32e5e35b925f Mon Sep 17 00:00:00 2001 From: Leonardo Sandoval Date: Mon, 9 Jan 2017 11:45:53 -0600 Subject: selftest: runtime-test: skip image-install test for poky-tiny poky-tiny cannot build full-cmdline image, so skip this test in this case. (From OE-Core rev: c2b1c562db160876fc3e1ee8b15bd07136d6ea7a) Signed-off-by: Leonardo Sandoval Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/selftest/runtime-test.py | 2 ++ 1 file changed, 2 insertions(+) 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' -- cgit v1.2.3-54-g00ecf