[OE-core] [PATCH 40/55] oeqa/core/context: Add option to select tests to run
Aníbal Limón
anibal.limon at linux.intel.com
Fri Jan 20 17:10:11 UTC 2017
From: Mariano Lopez <mariano.lopez at linux.intel.com>
This add the option to select what tests to run in the
<module>[.<class>[.<test>]] format.
Currently it just support modules
Signed-off-by: Mariano Lopez <mariano.lopez at linux.intel.com>
---
meta/lib/oeqa/core/context.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py
index ba6ccf8..efed4e6 100644
--- a/meta/lib/oeqa/core/context.py
+++ b/meta/lib/oeqa/core/context.py
@@ -157,6 +157,7 @@ class OETestContextExecutor(object):
default_cases = [os.path.join(os.path.abspath(os.path.dirname(__file__)),
'cases/example')]
default_test_data = os.path.join(default_cases[0], 'data.json')
+ default_tests = None
def register_commands(self, logger, subparsers):
self.parser = subparsers.add_parser(self.name, help=self.help,
@@ -167,6 +168,9 @@ class OETestContextExecutor(object):
self.parser.add_argument('--output-log', action='store',
default=self.default_output_log,
help="results output log, default: %s" % self.default_output_log)
+ self.parser.add_argument('--run-tests', action='store',
+ default=self.default_tests,
+ help="tests to run in <module>[.<class>[.<name>]] format. Just works for modules now")
if self.default_test_data:
self.parser.add_argument('--test-data-file', action='store',
@@ -211,6 +215,8 @@ class OETestContextExecutor(object):
else:
self.tc_kwargs['init']['td'] = {}
+ self.tc_kwargs['load']['modules'] = args.run_tests.split()
+
self.module_paths = args.CASES_PATHS
def run(self, logger, args):
--
2.1.4
More information about the Openembedded-core
mailing list