sanitycheck: fix skipped element in junit output
The skipped element was left empty, fill it with details to make parsers happy. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
1ea5d7b472
commit
2c7636bc88
1 changed files with 3 additions and 1 deletions
|
@ -2180,7 +2180,9 @@ class TestSuite:
|
|||
elif ti.results[k] == 'SKIP':
|
||||
el = ET.SubElement(
|
||||
eleTestcase,
|
||||
'skipped')
|
||||
'skipped',
|
||||
type="skipped",
|
||||
message="Skipped")
|
||||
|
||||
result = ET.tostring(eleTestsuites)
|
||||
f = open(report_file, 'wb')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue