From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 34F36C4828F for ; Fri, 9 Feb 2024 12:35:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id ADA6110F39E; Fri, 9 Feb 2024 12:35:56 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="hcJ0UNX6"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.15]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4FEDE10F38F for ; Fri, 9 Feb 2024 12:35:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1707482148; x=1739018148; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding:sender; bh=Kbx+CpnIePI09WCWR950yEIxG7d61BB9H0E5QTdoDYo=; b=hcJ0UNX6TTlKTNDc3EeL/WWWWdswNBOs5EVOJgdioiwdN4wxzlIrtcRz TAL84+fuNg6yMa8PNzXc+/qUpvUySRYfyNzrlmGhF8MfNjsplQx9B9Xo6 GixlTDqr4HIQueqt4xs0MGe9zAo5uAllgZPG0KQEMu5YjyiUzlguYelVU adC0Sn7KHaQommeJXmKvn3cp5HtDKUsqlF9qpn//QHl/WIbssBv9fO5C5 ZuBHbhXy+zfp+4SN59nrvpVWDnVcQEQ01KpFQd1q8APasqMbAYxGSnO0L oqjeEcqtH1CrAvmDPrWvkqOpA/ySmlEKQz3pn18RIPiTys0pFMMcjtrK0 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10978"; a="5272312" X-IronPort-AV: E=Sophos;i="6.05,256,1701158400"; d="scan'208";a="5272312" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orvoesa107.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2024 04:35:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10978"; a="910699390" X-IronPort-AV: E=Sophos;i="6.05,256,1701158400"; d="scan'208";a="910699390" Received: from linux.intel.com ([10.54.29.200]) by fmsmga002.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Feb 2024 04:35:47 -0800 Received: from linux.intel.com (unknown [10.245.246.46]) (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 1C56E580DE8 for ; Fri, 9 Feb 2024 04:35:47 -0800 (PST) Received: from maurocar by linux.intel.com with local (Exim 4.97.1) (envelope-from ) id 1rYQ6b-00000001DG0-0Am7 for igt-dev@lists.freedesktop.org; Fri, 09 Feb 2024 13:35:45 +0100 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Subject: [PATCH i-g-t v3 1/8] scripts/test_list.py: fix a typo on default-if-not-excluded Date: Fri, 9 Feb 2024 13:34:40 +0100 Message-ID: <20240209123543.289204-2-mauro.chehab@linux.intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240209123543.289204-1-mauro.chehab@linux.intel.com> References: <20240209123543.289204-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: igt-dev@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development mailing list for IGT GPU Tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" From: Mauro Carvalho Chehab There is an extra hyphen there. Currenty, this is harmless, as such config attribut is not used anymore on current config files. Signed-off-by: Mauro Carvalho Chehab --- scripts/test_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index eeb452091fbf..69c830ca1539 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -550,7 +550,7 @@ class TestList: if not update: continue - default_value = update.get("default--if-not-excluded") + default_value = update.get("default-if-not-excluded") append_value = update.get("append-value-if-not-excluded") testname = subtest_dict["_summary_"] -- 2.43.0