diff options
-rw-r--r-- | meta/classes/testimage.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
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"): | |||
83 | testslist = [] | 83 | testslist = [] |
84 | for testname in testsuites: | 84 | for testname in testsuites: |
85 | if testname != "auto": | 85 | if testname != "auto": |
86 | if testname.startswith("oeqa."): | ||
87 | testslist.append(testname) | ||
88 | continue | ||
86 | found = False | 89 | found = False |
87 | for p in bbpath: | 90 | for p in bbpath: |
88 | if os.path.exists(os.path.join(p, 'lib', 'oeqa', type, testname + '.py')): | 91 | if os.path.exists(os.path.join(p, 'lib', 'oeqa', type, testname + '.py')): |