mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
resulttool/report: Ensure test suites with no results show up on the report
ptest suites with no results don't show up on the reports even though we have a duration for them. Fix this so the fact they report no tests is visible. (From OE-Core rev: eb67a3cc4f8f57e85f1f95ced8f2c32ab5090866) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -30,6 +30,14 @@ class ResultsTextReport(object):
|
|||||||
|
|
||||||
def handle_ptest_result(self, k, status, result):
|
def handle_ptest_result(self, k, status, result):
|
||||||
if k == 'ptestresult.sections':
|
if k == 'ptestresult.sections':
|
||||||
|
# Ensure tests without any test results still show up on the report
|
||||||
|
for suite in result['ptestresult.sections']:
|
||||||
|
if suite not in self.ptests:
|
||||||
|
self.ptests[suite] = {'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-', 'failed_testcases': []}
|
||||||
|
if 'duration' in result['ptestresult.sections'][suite]:
|
||||||
|
self.ptests[suite]['duration'] = result['ptestresult.sections'][suite]['duration']
|
||||||
|
if 'timeout' in result['ptestresult.sections'][suite]:
|
||||||
|
self.ptests[suite]['duration'] += " T"
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
_, suite, test = k.split(".", 2)
|
_, suite, test = k.split(".", 2)
|
||||||
@@ -48,11 +56,6 @@ class ResultsTextReport(object):
|
|||||||
for tk in self.result_types:
|
for tk in self.result_types:
|
||||||
if status in self.result_types[tk]:
|
if status in self.result_types[tk]:
|
||||||
self.ptests[suite][tk] += 1
|
self.ptests[suite][tk] += 1
|
||||||
if 'ptestresult.sections' in result and suite in result['ptestresult.sections']:
|
|
||||||
if 'duration' in result['ptestresult.sections'][suite]:
|
|
||||||
self.ptests[suite]['duration'] = result['ptestresult.sections'][suite]['duration']
|
|
||||||
if 'timeout' in result['ptestresult.sections'][suite]:
|
|
||||||
self.ptests[suite]['duration'] += " T"
|
|
||||||
|
|
||||||
def get_aggregated_test_result(self, logger, testresult):
|
def get_aggregated_test_result(self, logger, testresult):
|
||||||
test_count_report = {'passed': 0, 'failed': 0, 'skipped': 0, 'failed_testcases': []}
|
test_count_report = {'passed': 0, 'failed': 0, 'skipped': 0, 'failed_testcases': []}
|
||||||
|
|||||||
Reference in New Issue
Block a user