[gnome-continuous-yocto/gnomeostree-3.28-rocko: 4232/8267] oeqa/core/context: Add option to select tests to run
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-continuous-yocto/gnomeostree-3.28-rocko: 4232/8267] oeqa/core/context: Add option to select tests to run
- Date: Sun, 17 Dec 2017 01:44:52 +0000 (UTC)
commit 32a3f4d6abb79ba93b215d7b9fafbc84900bdae1
Author: Mariano Lopez <mariano lopez linux intel com>
Date: Tue Dec 13 12:27:52 2016 +0000
oeqa/core/context: Add option to select tests to run
This add the option to select what tests to run in the
<module>[.<class>[.<test>]] format.
Currently it just support modules
(From OE-Core rev: 0050565d71cee5a0cc22660b2398e4334d4b6719)
Signed-off-by: Mariano Lopez <mariano lopez linux intel com>
Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>
meta/lib/oeqa/core/context.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
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):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]