From: Lucian Musat <george.l.mu...@intel.com> It can accept parameters like oeqa.runtime.<foldername> and it will run all test files from that folder.
Signed-off-by: Lucian Musat <george.l.mu...@intel.com> --- meta/lib/oeqa/runexported.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py index f147089..c3ce79a 100755 --- a/meta/lib/oeqa/runexported.py +++ b/meta/lib/oeqa/runexported.py @@ -138,6 +138,12 @@ def main(): for test in tc.testslist: print test else: + for index, test in enumerate(tc.testslist): + if os.path.isdir(os.sep.join(test.split('.'))): + del tc.testslist[index] + for files in os.listdir(os.sep.join(test.split('.'))): + if (files.endswith(".py")) and not files.startswith("_"): + tc.testslist.insert(index, test+'.'+files.split('.')[0]) target.exportStart() runTests(tc) -- 2.5.0 -- _______________________________________________ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core