diff options
author | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2017-01-09 11:45:53 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-16 18:05:14 +0000 |
commit | 0bb40f0bb9f6aff00b54a31f5f4f32e5e35b925f (patch) | |
tree | a1acf326e213141af57b78172835a1c258c3450f /meta/lib/oeqa/selftest | |
parent | 5c5db3a477955ac4d8175565a5fa7edc61aa49cd (diff) | |
download | poky-0bb40f0bb9f6aff00b54a31f5f4f32e5e35b925f.tar.gz |
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 <leonardo.sandoval.gonzalez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r-- | meta/lib/oeqa/selftest/runtime-test.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): | |||
95 | Product: oe-core | 95 | Product: oe-core |
96 | Author: Mariano Lopez <mariano.lopez@intel.com> | 96 | Author: Mariano Lopez <mariano.lopez@intel.com> |
97 | """ | 97 | """ |
98 | if get_bb_var('DISTRO') == 'poky-tiny': | ||
99 | self.skipTest('core-image-full-cmdline not buildable for poky-tiny') | ||
98 | 100 | ||
99 | features = 'INHERIT += "testimage"\n' | 101 | features = 'INHERIT += "testimage"\n' |
100 | features += 'TEST_SUITES = "ping ssh selftest"\n' | 102 | features += 'TEST_SUITES = "ping ssh selftest"\n' |