public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>,
	Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>,
	Suresh Kumar Kurmi <suresh.kumar.kurmi@intel.com>
Subject: Re: [igt-dev] [i-g-t] tests/kms_cursor_crc: Add Gaurd for MSO eDP for Pipe C and D
Date: Tue, 3 Jan 2023 15:50:16 +0100	[thread overview]
Message-ID: <Y7RAqN8nGYF8IOKr@kamilkon-desk1> (raw)
In-Reply-To: <20221230064638.155300-1-dnyaneshwar.bhadane@intel.com>

Hi,

On 2022-12-30 at 12:16:38 +0530, bhadanednyaneshwar wrote:
> MSO eDP is not supported on pipe C and D. Added a test condition
------------------------------------------- ^
> to prevent tests from execution on pipe C and D.This condition was
> missed for cursor-size-change,cursor-alpha-opaque and
> cursor-alpha-transparent testcases.

Please improve a little commit message, you just added skips for
not supported cursors in those subtests.

> 
> Inside require_cursor_size() checks first for eligiblity to igt commit
> using test buffer.For MSO eDP, It is fail to commit for pipe C/pipe D
> and require_cursor_size() return non zero value. So it will skip
> the dynamic testcase for pipe C and D.

The above paragraph is spelling what you done. Will it only skip
for pipe C and D ? Or any pipe on which it cannot create cursor ?

You can add cc here:

Cc: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Cc: Suresh Kumar Kurmi <suresh.kumar.kurmi@intel.com>
Cc: Swati Sharma <swati2.sharma@intel.com>
> 
> Signed-off-by: bhadanednyaneshwar <dnyaneshwar.bhadane@intel.com>
---------------- ^
Please put here your name (look for example for Swati), I guess
it should be

Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>

but if I guess wrong please put correct one (it is best to put this
in global git config).

> ---
>  tests/kms_cursor_crc.c | 21 ++++++++++++++++++---
>  1 file changed, 18 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 17f294d6..d8fb9c0d 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -786,7 +786,12 @@ static void run_tests_on_pipe(data_t *data)
>  	igt_subtest_with_dynamic("cursor-size-change") {
>  		for_each_pipe(&data->display, pipe) {
>  			data->pipe = pipe;
> -
> +			create_cursor_fb(data, data->cursor_max_w, data->cursor_max_h);
----------------------- ^
Do you really need this here ? It is used elsewhere within fixup
(there is assert in this function), in other tests below
require_cursor_size is called without create_cursor_fb

> +			if (require_cursor_size(data, data->cursor_max_w, data->cursor_max_h)) {
> +				igt_debug("Cursor size %dx%d not supported by driver\n",
> +					  data->cursor_max_w, data->cursor_max_h);
> +				continue;
> +			}

Put newline here.

>  			igt_dynamic_f("pipe-%s-%s",
>  				      kmstest_pipe_name(pipe),
>  				      data->output->name)
> @@ -800,7 +805,12 @@ static void run_tests_on_pipe(data_t *data)
>  	igt_subtest_with_dynamic("cursor-alpha-opaque") {
>  		for_each_pipe(&data->display, pipe) {
>  			data->pipe = pipe;
> -
> +			create_cursor_fb(data, data->cursor_max_w, data->cursor_max_h);
----------------------- ^
> +			if (require_cursor_size(data, data->cursor_max_w, data->cursor_max_h)) {
> +				igt_debug("Cursor size %dx%d not supported by driver\n",
> +					  data->cursor_max_w, data->cursor_max_h);
> +				continue;
> +			}

Put newline here.

>  			igt_dynamic_f("pipe-%s-%s",
>  				      kmstest_pipe_name(pipe),
>  				      data->output->name)
> @@ -814,7 +824,12 @@ static void run_tests_on_pipe(data_t *data)
>  	igt_subtest_with_dynamic("cursor-alpha-transparent") {
>  		for_each_pipe(&data->display, pipe) {
>  			data->pipe = pipe;
> -
> +			create_cursor_fb(data, data->cursor_max_w, data->cursor_max_h);
----------------------- ^
> +			if (require_cursor_size(data, data->cursor_max_w, data->cursor_max_h)) {
> +				igt_debug("Cursor size %dx%d not supported by driver\n",
> +					  data->cursor_max_w, data->cursor_max_h);
> +				continue;
> +			}

Put newline here.

Regards,
Kamil

>  			igt_dynamic_f("pipe-%s-%s",
>  				      kmstest_pipe_name(pipe),
>  				      data->output->name)
> -- 
> 2.35.1
> 

  parent reply	other threads:[~2023-01-03 14:50 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-30  6:46 [igt-dev] [i-g-t] tests/kms_cursor_crc: Add Gaurd for MSO eDP for Pipe C and D bhadanednyaneshwar
2022-12-30 10:27 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2022-12-30 11:49 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2022-12-30 19:16 ` [igt-dev] [i-g-t] " Swati Sharma
2023-01-03  5:59   ` Bhadane, Dnyaneshwar
2023-01-03 14:50 ` Kamil Konieczny [this message]
2023-01-05  6:26   ` Bhadane, Dnyaneshwar
2023-01-03 17:41 ` Kamil Konieczny
2023-01-05  6:22   ` Bhadane, Dnyaneshwar
2023-01-03 18:31 ` Juha-Pekka Heikkila
2023-01-05  8:07   ` Bhadane, Dnyaneshwar
2023-01-06 12:28   ` Bhadane, Dnyaneshwar
2023-01-09  6:49 ` [igt-dev] [i-g-t v2] tests/kms_cursor_crc: Skip for invalid pipe connector connection Dnyaneshwar Bhadane
2023-01-09 15:19   ` Juha-Pekka Heikkila
2023-01-09  7:18 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_cursor_crc: Add Gaurd for MSO eDP for Pipe C and D (rev2) Patchwork
2023-01-09  7:52 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_cursor_crc: Add Gaurd for MSO eDP for Pipe C and D (rev3) Patchwork
2023-01-09  9:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y7RAqN8nGYF8IOKr@kamilkon-desk1 \
    --to=kamil.konieczny@linux.intel.com \
    --cc=chaitanya.kumar.borah@intel.com \
    --cc=dnyaneshwar.bhadane@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=suresh.kumar.kurmi@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox