From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id 09E7810E004 for ; Thu, 13 Jul 2023 07:51:02 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.27.144]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id 32EDC580E3A for ; Thu, 13 Jul 2023 00:51:00 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1qJr6I-0044U2-0d for igt-dev@lists.freedesktop.org; Thu, 13 Jul 2023 09:50:58 +0200 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Thu, 13 Jul 2023 09:50:52 +0200 Message-Id: <20230713075054.970457-13-mauro.chehab@linux.intel.com> In-Reply-To: <20230713075054.970457-1-mauro.chehab@linux.intel.com> References: <20230713075054.970457-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v3 12/14] scripts/test_list.py: skip some internal fields List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab both subtest_line and _summary_ are used internally at the script logic. They shouldn't be part of the output. Reviewed-by: Kamil Konieczny Signed-off-by: Mauro Carvalho Chehab --- scripts/test_list.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/test_list.py b/scripts/test_list.py index 6b0893a6da95..8e7ddef2bfb4 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -661,6 +661,10 @@ class TestList: continue if field == "arg": continue + if field == "_summary_": + continue + if field == "subtest_line": + continue print(f":{field}: {self.doc[test][field]}") -- 2.40.1