diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2017-02-09 13:15:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 09:29:43 -0800 |
commit | 8345f834a080737f03bee3f0c615dd9654401d93 (patch) | |
tree | a57c531694c3468d7f2bfd5f573fa601f4ea208d /meta/classes | |
parent | b7d6bb07fd37c55d07903a1e8921f17e39afde0a (diff) | |
download | openembedded-core-8345f834a080737f03bee3f0c615dd9654401d93.tar.gz openembedded-core-8345f834a080737f03bee3f0c615dd9654401d93.tar.bz2 openembedded-core-8345f834a080737f03bee3f0c615dd9654401d93.zip |
testimage.bbclass: Add check for empty test suite
If for some reason (most likely incorrect TEST_SUITES var)
you end with an empty test suite, testimage will start the
target (qemu by default) and will run an empty suite, so
better have a check before starting the target.
[YOCTO #10979]
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/testimage.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 366c6f5d7b..09cc6d2a21 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -149,6 +149,7 @@ def testimage_main(d): from oeqa.runtime.context import OERuntimeTestContext from oeqa.runtime.context import OERuntimeTestContextExecutor from oeqa.core.target.qemu import supported_fstypes + from oeqa.core.utils.test import getSuiteCases from oeqa.utils import make_logger_bitbake_compatible def sigterm_exception(signum, stackframe): @@ -250,6 +251,9 @@ def testimage_main(d): test_modules = d.getVar('TEST_SUITES') tc.loadTests(test_paths, modules=test_modules) + if not getSuiteCases(tc.suites): + bb.fatal('Empty test suite, please verify TEST_SUITES variable') + package_extraction(d, tc.suites) bootparams = None |