From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id E017710E1D4 for ; Wed, 11 Oct 2023 05:18:18 +0000 (UTC) Message-ID: Date: Wed, 11 Oct 2023 10:48:04 +0530 To: Swati Sharma , References: <20231010051923.41431-1-swati2.sharma@intel.com> <20231010051923.41431-2-swati2.sharma@intel.com> Content-Language: en-US From: Karthik B S In-Reply-To: <20231010051923.41431-2-swati2.sharma@intel.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Subject: Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_vblank: cosmetic changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: On 10/10/2023 10:49 AM, Swati Sharma wrote: > Fix igt_describe() documentation. Remove redundant documentation. > > Signed-off-by: Swati Sharma Reviewed-by: Karthik B S > --- > tests/kms_vblank.c | 15 +++++---------- > 1 file changed, 5 insertions(+), 10 deletions(-) > > diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c > index 33e933c22..bcfd8d012 100644 > --- a/tests/kms_vblank.c > +++ b/tests/kms_vblank.c > @@ -21,11 +21,6 @@ > * IN THE SOFTWARE. > */ > > -/** @file kms_vblank.c > - * > - * This is a test of performance of drmWaitVblank. > - */ > - > #include "igt.h" > #include > #include > @@ -46,7 +41,7 @@ > * Description: Test speed of WaitVblank. > * > * SUBTEST: crtc-id > - * Description: check the Vblank and flip events works with given crtc id > + * Description: Check the vblank and flip events works with given crtc id > * Driver requirement: i915, xe > * Functionality: vblank > * Mega feature: General Display Features > @@ -623,7 +618,7 @@ static void run_subtests_for_pipe(data_t *data) > if (m->flags & ~(f->valid | NOHANG)) > continue; > > - igt_describe("Check if test run while hanging by introducing NOHANG flag"); > + igt_describe("Check if test run while hanging by introducing NOHANG flag."); > igt_subtest_f("pipe-%s-%s-%s", > kmstest_pipe_name(data->pipe), > f->name, m->name) { > @@ -645,7 +640,7 @@ static void run_subtests_for_pipe(data_t *data) > if (f->valid & NOHANG || m->flags & NOHANG) > continue; > > - igt_describe("check if injected hang is working properly"); > + igt_describe("Check if injected hang is working properly."); > igt_subtest_f("pipe-%s-%s-%s-hang", > kmstest_pipe_name(data->pipe), > f->name, m->name) { > @@ -742,11 +737,11 @@ igt_main > igt_display_require_output(&data.display); > } > > - igt_describe("Negative test for vblank request"); > + igt_describe("Negative test for vblank request."); > igt_subtest("invalid") > invalid_subtest(&data, fd); > > - igt_describe("check the Vblank and flip events works with given crtc id"); > + igt_describe("Check the vblank and flip events works with given crtc id."); > igt_subtest("crtc-id") > crtc_id_subtest(&data, fd); >