From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
To: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>,
igt-dev@lists.freedesktop.org
Cc: juha-pekka.heikkila@intel.com, chaitanya.kumar.borah@intel.com,
suresh.kumar.kurmi@intel.com
Subject: Re: [igt-dev] [i-g-t v2] tests/kms_cursor_crc: Skip for invalid pipe connector connection
Date: Mon, 9 Jan 2023 17:19:36 +0200 [thread overview]
Message-ID: <2ea75407-5207-1489-1bca-ef371d1c6f71@gmail.com> (raw)
In-Reply-To: <20230109064905.280139-1-dnyaneshwar.bhadane@intel.com>
On 9.1.2023 8.49, Dnyaneshwar Bhadane wrote:
> Added a skip condition that checks for the valid pipe connection. This is a
> generic skip on pipe which checks for valid connector connection mask bit.
> This condition helps to skip tests for MSO panels on non supported pipes
> (C and D).This condition was missed for cursor-size-change,
> cursor-alpha-opaque and cursor-alpha-transparent testcases.
>
> --v2
> - Change commit messege from "Add Gaurd for MSO eDP for Pipe C and D"
> to "Skip condition for non valid pipe connector connection" [Kamil]
> - skip condition using igt_pipe_connector_valid() [Juha-Pekka]
>
> Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
>
> ---
> tests/kms_cursor_crc.c | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 17f294d6..87497b9e 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -786,6 +786,13 @@ 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;
> +
^^
in beginning of these blocks you have extra tab characters which will
produce notifications about white space errors, leave just new line here
but no tabs.
With those fixed
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> + if(!igt_pipe_connector_valid(pipe, data->output)) {
> + igt_debug("Invalid connector on pipe-%s-%s",
> + kmstest_pipe_name(pipe),
> + data->output->name);
> + continue;
> + }
>
> igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe),
> @@ -800,6 +807,13 @@ 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;
> +
> + if(!igt_pipe_connector_valid(pipe, data->output)) {
> + igt_debug("Invalid connector on pipe-%s-%s",
> + kmstest_pipe_name(pipe),
> + data->output->name);
> + continue;
> + }
>
> igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe),
> @@ -814,6 +828,13 @@ 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;
> +
> + if(!igt_pipe_connector_valid(pipe, data->output)) {
> + igt_debug("Invalid connector on pipe-%s-%s",
> + kmstest_pipe_name(pipe),
> + data->output->name);
> + continue;
> + }
>
> igt_dynamic_f("pipe-%s-%s",
> kmstest_pipe_name(pipe),
next prev parent reply other threads:[~2023-01-09 15:19 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
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 [this message]
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=2ea75407-5207-1489-1bca-ef371d1c6f71@gmail.com \
--to=juhapekka.heikkila@gmail.com \
--cc=chaitanya.kumar.borah@intel.com \
--cc=dnyaneshwar.bhadane@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=juha-pekka.heikkila@intel.com \
--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