From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 59FC010E172 for ; Mon, 15 May 2023 08:22:41 +0000 (UTC) From: Bhanuprakash Modem To: igt-dev@lists.freedesktop.org Date: Mon, 15 May 2023 13:46:05 +0530 Message-Id: <20230515081720.3713293-5-bhanuprakash.modem@intel.com> In-Reply-To: <20230515081720.3713293-1-bhanuprakash.modem@intel.com> References: <20230515081720.3713293-1-bhanuprakash.modem@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [i-g-t 04/79] 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 --- 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 d2d6357d1..0238c51dc 100644 --- a/tests/kms_test_config.json +++ b/tests/kms_test_config.json @@ -22,6 +22,11 @@ "description": "Defines what category of testlist it belongs" } }, + "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