From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 368FF10E3DF for ; Thu, 29 Jun 2023 14:55:32 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Thu, 29 Jun 2023 20:17:51 +0530 Message-Id: <20230629144910.3055377-3-bhanuprakash.modem@intel.com> In-Reply-To: <20230629144910.3055377-1-bhanuprakash.modem@intel.com> References: <20230629144910.3055377-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [V5 i-g-t 02/81] testplan/kms: Add support to differentiate b/w drivers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: Add support to differentiate the subtests based on the driver support, since many kms tests supports both i915 & xe drivers. Add a new field "Driver requirement" to test_config.json Example: - Driver requirement: i915 (i915 specific test) - Driver requirement: xe (xe specific test) - Driver requirement: any (tests supports both i915 & xe) Signed-off-by: Bhanuprakash Modem Reviewed-by: Mauro Carvalho Chehab --- tests/kms_test_config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/kms_test_config.json b/tests/kms_test_config.json index 447a13337..7a43da74e 100644 --- a/tests/kms_test_config.json +++ b/tests/kms_test_config.json @@ -23,6 +23,11 @@ } } }, + "Driver requirement": { + "_properties_": { + "description": "Describes any Driver specific requrirement, like i915/xe." + } + }, "Test category": { "_properties_": { "description": "Defines the test category. Usually used at subtest level." -- 2.40.0