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:01:56 +0000 |
commit | c2b1c562db160876fc3e1ee8b15bd07136d6ea7a (patch) | |
tree | 1e03c2bdf795f0d0a257cc59d9ae11dabc3c6221 /meta/lib | |
parent | bb32b232d686d1c057dede6f61ed4051b0088673 (diff) | |
download | openembedded-core-c2b1c562db160876fc3e1ee8b15bd07136d6ea7a.tar.gz openembedded-core-c2b1c562db160876fc3e1ee8b15bd07136d6ea7a.tar.bz2 openembedded-core-c2b1c562db160876fc3e1ee8b15bd07136d6ea7a.zip |
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 <leonardo.sandoval.gonzalez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-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): Product: oe-core Author: Mariano Lopez <mariano.lopez@intel.com> """ + 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' |