summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/testimage.bbclass4
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):
149 from oeqa.runtime.context import OERuntimeTestContext 149 from oeqa.runtime.context import OERuntimeTestContext
150 from oeqa.runtime.context import OERuntimeTestContextExecutor 150 from oeqa.runtime.context import OERuntimeTestContextExecutor
151 from oeqa.core.target.qemu import supported_fstypes 151 from oeqa.core.target.qemu import supported_fstypes
152 from oeqa.core.utils.test import getSuiteCases
152 from oeqa.utils import make_logger_bitbake_compatible 153 from oeqa.utils import make_logger_bitbake_compatible
153 154
154 def sigterm_exception(signum, stackframe): 155 def sigterm_exception(signum, stackframe):
@@ -250,6 +251,9 @@ def testimage_main(d):
250 test_modules = d.getVar('TEST_SUITES') 251 test_modules = d.getVar('TEST_SUITES')
251 tc.loadTests(test_paths, modules=test_modules) 252 tc.loadTests(test_paths, modules=test_modules)
252 253
254 if not getSuiteCases(tc.suites):
255 bb.fatal('Empty test suite, please verify TEST_SUITES variable')
256
253 package_extraction(d, tc.suites) 257 package_extraction(d, tc.suites)
254 258
255 bootparams = None 259 bootparams = None