From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id 400B710E04B for ; Fri, 8 Sep 2023 10:32:38 +0000 (UTC) From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Fri, 8 Sep 2023 12:31:52 +0200 Message-ID: <20230908103218.1089792-11-mauro.chehab@linux.intel.com> In-Reply-To: <20230908103218.1089792-1-mauro.chehab@linux.intel.com> References: <20230908103218.1089792-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v5 10/11] scripts/doc_to_xls.py: expand GPU excluded platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: tomasz.mistat@intel.com, jari.tahvanainen@intel.com Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab As this item reflect blacklists, better to expand it at the spreadsheet, as it makes easier to filter for it. Signed-off-by: Mauro Carvalho Chehab --- scripts/doc_to_xls.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/doc_to_xls.py b/scripts/doc_to_xls.py index 8531eeb81779..3af3488928cf 100755 --- a/scripts/doc_to_xls.py +++ b/scripts/doc_to_xls.py @@ -48,6 +48,10 @@ for config_file in parse_args.config: wb = Workbook() ws = None +expand_fields = { + "GPU excluded platform": "blacklist " +} + for row in range(len(tests)): test = tests[row] sheet_name = test.title @@ -58,7 +62,7 @@ for row in range(len(tests)): else: ws = wb.create_sheet(sheet_name) - sheet = test.get_spreadsheet() + sheet = test.get_spreadsheet(expand_fields) max_length = [] for col in range(len(sheet[row])): -- 2.41.0