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 77F4B10E450 for ; Mon, 4 Apr 2022 06:51:14 +0000 (UTC) From: priyanka.dandamudi@intel.com To: kamil.konieczny@linux.intel.com, igt-dev@lists.freedesktop.org, arjun.melkaveri@intel.com, priyanka.dandamudi@intel.com Date: Mon, 4 Apr 2022 12:13:30 +0530 Message-Id: <20220404064331.242256-2-priyanka.dandamudi@intel.com> In-Reply-To: <20220404064331.242256-1-priyanka.dandamudi@intel.com> References: <20220404064331.242256-1-priyanka.dandamudi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 1/2] i915/i915_module_load: Add descriptions for test List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Priyanka Dandamudi Add test description for subtests. v2: Minute corrections. Signed-off-by: Priyanka Dandamudi Signed-off-by: Apoorva Singh Cc: Melkaveri, Arjun Cc: Kamil Konieczny Reviewed-by: Kamil Konieczny --- tests/i915/i915_module_load.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/i915/i915_module_load.c b/tests/i915/i915_module_load.c index a86dd86c..f5f98acc 100644 --- a/tests/i915/i915_module_load.c +++ b/tests/i915/i915_module_load.c @@ -37,6 +37,8 @@ #include "igt_sysfs.h" #include "igt_core.h" +IGT_TEST_DESCRIPTION("Tests the i915 module loading."); + static void store_all(int i915) { const unsigned int gen = intel_gen(intel_get_drm_devid(i915)); @@ -236,6 +238,7 @@ hda_dynamic_debug(bool enable) igt_main { + igt_describe("Verify the basic functionality of i915 driver after it's reloaded."); igt_subtest("reload") { int load_error; @@ -252,6 +255,7 @@ igt_main /* only default modparams, can leave module loaded */ } + igt_describe("Verify that i915 driver can be successfully loaded with disabled display."); igt_subtest("reload-no-display") { igt_i915_driver_unload(); @@ -260,6 +264,8 @@ igt_main igt_i915_driver_unload(); } + igt_describe("Verify that i915 driver can be successfully reloaded at least once" + " with fault injection."); igt_subtest("reload-with-fault-injection") { const char *param; int i = 0; -- 2.25.1