aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-10-29 13:49:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-06 13:57:54 +0000
commit3b69099edc7db99c11bfb41eab2af50bd0e3d4f2 (patch)
tree0a0c55187a3cef2712aa8e6c6f07f5524745dc50 /meta/lib/oeqa/selftest
parenteefb07907873d20f2e66d3784106f6f72030b5b2 (diff)
downloadopenembedded-core-contrib-3b69099edc7db99c11bfb41eab2af50bd0e3d4f2.tar.gz
oeqa/selftest: Improvements to the json logging
Tweak the preceeding commit to: * Add STARTTIME to the identifier to make it unique * Use LOG_DIR * Store the layer config in a more natural json format * Drop '_' function prefixes (From OE-Core rev: 173f59acf9722e2ef27fdd49c20f7d3d664917eb) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r--meta/lib/oeqa/selftest/context.py25
1 files changed, 11 insertions, 14 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 964a46c45a..a5116a7e46 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -202,30 +202,27 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
self.tc.logger.info("Running bitbake -p")
runCmd("bitbake -p")
- def _get_json_result_dir(self, args):
- json_result_dir = os.path.join(os.path.dirname(os.path.abspath(args.output_log)), 'oeqa')
+ def get_json_result_dir(self, args):
+ json_result_dir = os.path.join(os.path.dirname(os.path.abspath(args.output_log)), 'log', 'oeqa')
if "OEQA_JSON_RESULT_DIR" in self.tc.td:
json_result_dir = self.tc.td["OEQA_JSON_RESULT_DIR"]
return json_result_dir
- def _get_configuration(self, args):
+ def get_configuration(self, args):
import platform
from oeqa.utils.metadata import metadata_from_bb
metadata = metadata_from_bb()
configuration = {'TEST_TYPE': 'oeselftest',
- 'START_TIME': args.test_start_time,
+ 'STARTTIME': args.test_start_time,
'MACHINE': self.tc.td["MACHINE"],
'HOST_DISTRO': ('-'.join(platform.linux_distribution())).replace(' ', '-'),
- 'HOST_NAME': metadata['hostname']}
- layers = metadata['layers']
- for l in layers:
- configuration['%s_BRANCH_REV' % os.path.basename(l)] = '%s:%s' % (metadata['layers'][l]['branch'],
- metadata['layers'][l]['commit'])
+ 'HOST_NAME': metadata['hostname'],
+ 'LAYERS': metadata['layers']}
return configuration
- def _get_result_id(self, configuration):
- return '%s_%s_%s' % (configuration['TEST_TYPE'], configuration['HOST_DISTRO'], configuration['MACHINE'])
+ def get_result_id(self, configuration):
+ return '%s_%s_%s_%s' % (configuration['TEST_TYPE'], configuration['HOST_DISTRO'], configuration['MACHINE'], configuration['STARTTIME'])
def _internal_run(self, logger, args):
self.module_paths = self._get_cases_paths(
@@ -243,10 +240,10 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
else:
self._pre_run()
rc = self.tc.runTests(**self.tc_kwargs['run'])
- configuration = self._get_configuration(args)
- rc.logDetails(self._get_json_result_dir(args),
+ configuration = self.get_configuration(args)
+ rc.logDetails(self.get_json_result_dir(args),
configuration,
- self._get_result_id(configuration))
+ self.get_result_id(configuration))
rc.logSummary(self.name)
return rc