compare_cts_reports: do not show ignored ABI in the sheet

Do not show the ABI name in the compare result spread sheet
if `--ignore-abi` was specified when generating the csv
diff file.

Bug: 315073470
Test: compare_cts_reports.py and generate_spread_sheet.py
Change-Id: I3cd015dd24e6597a4f8453c73638f1302c8e6fb7
This commit is contained in:
Dennis Song
2023-12-11 11:04:58 +08:00
parent c60d41238b
commit 4b6317ed14
3 changed files with 7 additions and 2 deletions

View File

@@ -22,3 +22,5 @@ VERSION = '1.0'
NO_DATA = 'null'
TESTED_ITEMS = 'tested_items'
PASS_RATE = 'pass_rate'
ABI_IGNORED = 'abi-ignored'

View File

@@ -27,6 +27,7 @@ python3 generate_spread_sheet.py \
"""
import argparse
import constant
import csv
import gspread
import os
@@ -183,7 +184,9 @@ def _write_compare_details(
# Module changes, need a new header row.
if module_name != curr_module:
rows_content.append([f'{module_name} [{abi}]', ''] + [''] * num_reports)
module_with_abi = (module_name if abi == constant.ABI_IGNORED
else f'{module_name} [{abi}]')
rows_content.append([module_with_abi, ''] + [''] * num_reports)
module_header_row = len(rows_content)
header_cell = _get_range_cell(
begin_row=curr_row, begin_column='A',

View File

@@ -134,7 +134,7 @@ class CtsReport:
for module in root.iter('Module'):
module_name = module.attrib['name']
abi = 'ignored' if ignore_abi else module.attrib['abi']
abi = constant.ABI_IGNORED if ignore_abi else module.attrib['abi']
for testcase in module.iter('TestCase'):
class_name = testcase.attrib['name']