diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index ba254c289c..1e3bb066d4 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -83,6 +83,9 @@ def get_tests_list(d, type="runtime"): testslist = [] for testname in testsuites: if testname != "auto": + if testname.startswith("oeqa."): + testslist.append(testname) + continue found = False for p in bbpath: if os.path.exists(os.path.join(p, 'lib', 'oeqa', type, testname + '.py')):