From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTPS id 09F4A10EEF9 for ; Wed, 18 May 2022 13:59:19 +0000 (UTC) From: sai.gowtham.ch@intel.com To: igt-dev@lists.freedesktop.org, sai.gowtham.ch@intel.com, kamil.konieczny@linux.intel.com Date: Wed, 18 May 2022 19:29:07 +0530 Message-Id: <20220518135908.23918-2-sai.gowtham.ch@intel.com> In-Reply-To: <20220518135908.23918-1-sai.gowtham.ch@intel.com> References: <20220518135908.23918-1-sai.gowtham.ch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 1/2] i915/gem_exec_gttfill: Added test description for test case. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Sai Gowtham Ch Added test description to all the available subtests. Cc: Kamil Konieczny Signed-off-by: Sai Gowtham Ch --- tests/i915/gem_exec_gttfill.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/i915/gem_exec_gttfill.c b/tests/i915/gem_exec_gttfill.c index ebe6d2d3..4557142d 100644 --- a/tests/i915/gem_exec_gttfill.c +++ b/tests/i915/gem_exec_gttfill.c @@ -236,9 +236,12 @@ igt_main intel_allocator_multiprocess_start(); } + igt_describe("Checks if it can handle enough batches to fill gtt"); igt_subtest("basic") /* just enough to run a single pass */ fillgtt(i915, ctx, ALL_ENGINES, 1); + igt_describe("Checks the correctness of handling enough batches " + "to fill gtt for each engine"); igt_subtest_with_dynamic("engines") { for_each_ctx_engine(i915, ctx, e) { if (!gem_class_can_store_dword(i915, e->class)) @@ -249,6 +252,8 @@ igt_main } } + igt_describe("Stress test check behaviour/correctness of handling" + " batches to fill gtt"); igt_subtest("all") fillgtt(i915, ctx, ALL_ENGINES, 20); -- 2.35.1