From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3A23610E10B for ; Wed, 9 Aug 2023 19:56:12 +0000 (UTC) Message-ID: <8c4bba16-5a09-3aea-5729-ff99e4fc3d11@intel.com> Date: Thu, 10 Aug 2023 01:25:01 +0530 MIME-Version: 1.0 Content-Language: en-US To: Bhanuprakash Modem , igt-dev@lists.freedesktop.org References: <20230629144910.3055377-36-bhanuprakash.modem@intel.com> From: "Gupta, Nidhi1" In-Reply-To: <20230629144910.3055377-36-bhanuprakash.modem@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [igt-dev] [V5, i-g-t, 35/81] tests/kms_atomic_interruptible: Document each subtest for testplan List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: LGTM Reviewed-by: Nidhi Gupta On 6/29/2023 8:18 PM, Bhanuprakash Modem wrote: > Add documentation for all kms tests which is used by IGT testplan > documentation. > > Signed-off-by: Bhanuprakash Modem > --- > tests/kms_atomic_interruptible.c | 50 ++++++++++++++++++++++++++++++++ > 1 file changed, 50 insertions(+) > > diff --git a/tests/kms_atomic_interruptible.c b/tests/kms_atomic_interruptible.c > index 2acdcb29d..10bfa6c1b 100644 > --- a/tests/kms_atomic_interruptible.c > +++ b/tests/kms_atomic_interruptible.c > @@ -21,6 +21,11 @@ > * IN THE SOFTWARE. > */ > > +/** > + * TEST: kms atomic interruptible > + * Category: Display > + * Description: Tests that interrupt various atomic ioctls. > + */ > #include > > #include "igt.h" > @@ -74,6 +79,51 @@ static drmEventContext drm_events = { > .page_flip_handler = ev_page_flip > }; > > +/** > + * SUBTEST: %s-setmode > + * Description: Tests the interrupt properties of %arg[1] modeset > + * Driver requirement: any > + * Functionality: kms_core > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * arg[1]: > + * > + * @atomic: atomic > + * @legacy: legacy > + */ > + > +/** > + * SUBTEST: legacy-%s > + * Description: Tests the interrupt properties for %arg[1] > + * Driver requirement: any > + * Functionality: kms_core > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * arg[1]: > + * > + * @cursor: Cursor > + * @dpms: DPMS > + * @pageflip: Page flip > + */ > + > +/** > + * SUBTEST: universal-setplane-%s > + * Description: Tests the interrupt properties for %arg[1] > + * Driver requirement: any > + * Functionality: kms_core > + * Mega feature: General Display Features > + * Run type: FULL > + * Test category: functionality test > + * > + * arg[1]: > + * > + * @cursor: Cursor plane > + * @primary: Primary plane > + */ > static void run_plane_test(igt_display_t *display, enum pipe pipe, igt_output_t *output, > enum plane_test_type test_type, unsigned plane_type) > { -- ~Nidhi Gupta