* [PATCH i-g-t 0/4] Improve MST HDCP tests
@ 2024-08-13 4:19 Suraj Kandpal
2024-08-13 4:19 ` [PATCH i-g-t 1/4] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Suraj Kandpal @ 2024-08-13 4:19 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, Suraj Kandpal
Improve HDCP MST test by doing the following
-Eliminate unnecessary loops and wait times
-Add retry logic for mst test cases
-Change screen color based on HDCP Encryption Status
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (4):
tests/kms_content_protection: Move HDCP output checks earlier
tests/kms_content_protection: Move try commit call
tests/kms_content_protection: Add retry logic for mst usecase
tests/kms_content_protection: Set screen red/green based on CP Status
tests/kms_content_protection.c | 120 +++++++++++++++++++++++++--------
1 file changed, 91 insertions(+), 29 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 16+ messages in thread* [PATCH i-g-t 1/4] tests/kms_content_protection: Move HDCP output checks earlier 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal @ 2024-08-13 4:19 ` Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call Suraj Kandpal ` (6 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Suraj Kandpal @ 2024-08-13 4:19 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, Suraj Kandpal Move the HDCP output check earlier when no. MST outputs are being checked this will avoid us using an extra loop and an extra array. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- tests/kms_content_protection.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index e9a468eb0..6bd744351 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -638,7 +638,7 @@ test_content_protection_mst(int content_type) int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0, i; enum pipe pipe; bool pipe_found; - igt_output_t *mst_output[IGT_MAX_PIPES], *hdcp_mst_output[IGT_MAX_PIPES]; + igt_output_t *hdcp_mst_output[IGT_MAX_PIPES]; for_each_pipe(display, pipe) max_pipe++; @@ -662,10 +662,13 @@ test_content_protection_mst(int content_type) igt_output_set_pipe(output, pipe); prepare_modeset_on_mst_output(output); - mst_output[dp_mst_outputs++] = output; + dp_mst_outputs++; + if (output_hdcp_capable(output, content_type)) + hdcp_mst_output[valid_outputs++] = output; } igt_require_f(dp_mst_outputs > 1, "No DP MST set up with >= 2 outputs found in a single topology\n"); + igt_require_f(valid_outputs > 1, "DP MST outputs do not have the required HDCP support\n"); if (igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY | @@ -674,22 +677,13 @@ test_content_protection_mst(int content_type) bool found = igt_override_all_active_output_modes_to_fit_bw(display); igt_require_f(found, "No valid mode combo found for MST modeset\n"); - for (count = 0; count < dp_mst_outputs; count++) - prepare_modeset_on_mst_output(mst_output[count]); + for (count = 0; count < valid_outputs; count++) + prepare_modeset_on_mst_output(hdcp_mst_output[count]); } ret = igt_display_try_commit2(display, COMMIT_ATOMIC); igt_require_f(ret == 0, "Commit failure during MST modeset\n"); - for (count = 0; count < dp_mst_outputs; count++) { - if (!output_hdcp_capable(mst_output[count], content_type)) - continue; - - hdcp_mst_output[valid_outputs++] = mst_output[count]; - } - - igt_require_f(valid_outputs > 1, "DP MST outputs do not have the required HDCP support\n"); - for (count = 0; count < valid_outputs; count++) { igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); -- 2.43.2 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 1/4] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal @ 2024-08-13 4:19 ` Suraj Kandpal 2024-08-19 5:04 ` B, Jeevan 2024-08-13 4:19 ` [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal ` (5 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Suraj Kandpal @ 2024-08-13 4:19 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, Suraj Kandpal Currently we are calling try commit twice once in if condition and again right after that. The correct sequence should be we call try commit again only if the first one fails. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- tests/kms_content_protection.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index 6bd744351..db6dc17b1 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -679,10 +679,10 @@ test_content_protection_mst(int content_type) for (count = 0; count < valid_outputs; count++) prepare_modeset_on_mst_output(hdcp_mst_output[count]); - } - ret = igt_display_try_commit2(display, COMMIT_ATOMIC); - igt_require_f(ret == 0, "Commit failure during MST modeset\n"); + ret = igt_display_try_commit2(display, COMMIT_ATOMIC); + igt_require_f(ret == 0, "Commit failure during MST modeset\n"); + } for (count = 0; count < valid_outputs; count++) { igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); -- 2.43.2 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call 2024-08-13 4:19 ` [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call Suraj Kandpal @ 2024-08-19 5:04 ` B, Jeevan 2024-08-19 5:18 ` Kandpal, Suraj 0 siblings, 1 reply; 16+ messages in thread From: B, Jeevan @ 2024-08-19 5:04 UTC (permalink / raw) To: Kandpal, Suraj, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K, Kandpal, Suraj > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Suraj > Kandpal > Sent: Tuesday, August 13, 2024 9:50 AM > To: igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call > > Currently we are calling try commit twice once in if condition and again right > after that. The correct sequence should be we call try commit again only if the > first one fails. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > tests/kms_content_protection.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index 6bd744351..db6dc17b1 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -679,10 +679,10 @@ test_content_protection_mst(int content_type) > > for (count = 0; count < valid_outputs; count++) > > prepare_modeset_on_mst_output(hdcp_mst_output[count]); > - } > > - ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > - igt_require_f(ret == 0, "Commit failure during MST modeset\n"); Sequence change doesn't looks correct please reverify. > + ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > + igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > + } > > for (count = 0; count < valid_outputs; count++) { > igt_output_set_prop_value(hdcp_mst_output[count], > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > -- > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call 2024-08-19 5:04 ` B, Jeevan @ 2024-08-19 5:18 ` Kandpal, Suraj 0 siblings, 0 replies; 16+ messages in thread From: Kandpal, Suraj @ 2024-08-19 5:18 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K > -----Original Message----- > From: B, Jeevan <jeevan.b@intel.com> > Sent: Monday, August 19, 2024 10:35 AM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: RE: [PATCH i-g-t 2/4] tests/kms_content_protection: Move try > commit call > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Suraj Kandpal > > Sent: Tuesday, August 13, 2024 9:50 AM > > To: igt-dev@lists.freedesktop.org > > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > > Subject: [PATCH i-g-t 2/4] tests/kms_content_protection: Move try > > commit call > > > > Currently we are calling try commit twice once in if condition and > > again right after that. The correct sequence should be we call try > > commit again only if the first one fails. > > > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > tests/kms_content_protection.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/tests/kms_content_protection.c > > b/tests/kms_content_protection.c index 6bd744351..db6dc17b1 100644 > > --- a/tests/kms_content_protection.c > > +++ b/tests/kms_content_protection.c > > @@ -679,10 +679,10 @@ test_content_protection_mst(int content_type) > > > > for (count = 0; count < valid_outputs; count++) > > > > prepare_modeset_on_mst_output(hdcp_mst_output[count]); > > - } > > > > - ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > > - igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > Sequence change doesn't looks correct please reverify. This is actually the correct sequence currently what was happening was that even if the try commit call inside the if statement passed We would still end up doing a try commit again what er actually want is that if the try commit in the condition prior to this fails We adjust the params and then do a new try commit call. Ankit maybe you can confirm this behaviour. Regards, Suraj Kandpal > > + ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > > + igt_require_f(ret == 0, "Commit failure during MST > modeset\n"); > > + } > > > > for (count = 0; count < valid_outputs; count++) { > > igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > > -- > > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 1/4] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call Suraj Kandpal @ 2024-08-13 4:19 ` Suraj Kandpal 2024-08-19 5:17 ` B, Jeevan 2024-08-13 4:19 ` [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal ` (4 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Suraj Kandpal @ 2024-08-13 4:19 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, Suraj Kandpal Add mst retry logic where it retries 3 times before failing the test. After every retry mst setup needs to be disabled so we need to add a function which disables mst in one commit. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- tests/kms_content_protection.c | 84 +++++++++++++++++++++++++++++----- 1 file changed, 73 insertions(+), 11 deletions(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index db6dc17b1..82a56167b 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -278,6 +278,35 @@ static bool test_cp_enable(igt_output_t *output, enum igt_commit_style s, return ret; } +static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[], enum igt_commit_style s, + int valid_outputs) +{ + igt_display_t *display = &data.display; + igt_plane_t *primary; + bool ret; + int count; + u64 val; + + for (count = 0; count < valid_outputs; count++) { + primary = igt_output_get_plane_type(hdcp_mst_output[count], DRM_PLANE_TYPE_PRIMARY); + igt_plane_set_fb(primary, &data.red); + igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, + CP_UNDESIRED); + } + + igt_display_commit2(display, s); + + ret = wait_for_prop_value(hdcp_mst_output[0], CP_UNDESIRED, + KERNEL_DISABLE_TIME_ALLOWED_MSEC); + for (count = 1; count < valid_outputs; count++) { + val = igt_output_get_prop(hdcp_mst_output[count], + IGT_CONNECTOR_CONTENT_PROTECTION); + ret &= (val == CP_UNDESIRED); + } + + igt_assert_f(ret, "Content Protection not cleared\n"); +} + static void test_cp_disable(igt_output_t *output, enum igt_commit_style s) { igt_display_t *display = &data.display; @@ -630,6 +659,49 @@ static void test_cp_lic_on_mst(igt_output_t *mst_outputs[], int valid_outputs, b } } +static bool +test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int valid_outputs, + int retries, int content_type) +{ + igt_display_t *display = &data.display; + int retry_orig = retries, count; + bool ret; + u64 val; + + do { + if (retry_orig != retries) + test_mst_cp_disable(hdcp_mst_output, COMMIT_ATOMIC, valid_outputs); + + for (count = 0; count < valid_outputs; count++) { + igt_output_set_prop_value(hdcp_mst_output[count], + IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); + + if (hdcp_mst_output[count]->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) + igt_output_set_prop_value(hdcp_mst_output[count], + IGT_CONNECTOR_HDCP_CONTENT_TYPE, + content_type); + } + + igt_display_commit2(display, COMMIT_ATOMIC); + + ret = wait_for_prop_value(hdcp_mst_output[0], CP_ENABLED, + KERNEL_AUTH_TIME_ALLOWED_MSEC); + for (count = 1; count < valid_outputs; count++) { + val = igt_output_get_prop(hdcp_mst_output[count], + IGT_CONNECTOR_CONTENT_PROTECTION); + ret &= (val == CP_ENABLED); + } + + retries -= 1; + if (!ret || retries) + igt_debug("Retry %d/3\n", 3 - retries); + } while (retries && !ret); + + igt_assert_f(ret, "Content Protection not enabled on MST output\n"); + + return ret; +} + static void test_content_protection_mst(int content_type) { @@ -684,19 +756,9 @@ test_content_protection_mst(int content_type) igt_require_f(ret == 0, "Commit failure during MST modeset\n"); } - for (count = 0; count < valid_outputs; count++) { - igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); - - if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) - igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); - } - igt_display_commit2(display, COMMIT_ATOMIC); - for (count = 0; count < valid_outputs; count++) { - ret = wait_for_prop_value(hdcp_mst_output[count], CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); - igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name); - } + ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs, 2, content_type); if (data.cp_tests & CP_LIC) test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); -- 2.43.2 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase 2024-08-13 4:19 ` [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal @ 2024-08-19 5:17 ` B, Jeevan 2024-08-19 5:22 ` Kandpal, Suraj 2024-08-19 5:32 ` Kandpal, Suraj 0 siblings, 2 replies; 16+ messages in thread From: B, Jeevan @ 2024-08-19 5:17 UTC (permalink / raw) To: Kandpal, Suraj, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K, Kandpal, Suraj > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Suraj > Kandpal > Sent: Tuesday, August 13, 2024 9:50 AM > To: igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst > usecase > > Add mst retry logic where it retries 3 times before failing the test. > After every retry mst setup needs to be disabled so we need to add a function > which disables mst in one commit. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > tests/kms_content_protection.c | 84 +++++++++++++++++++++++++++++----- > 1 file changed, 73 insertions(+), 11 deletions(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index db6dc17b1..82a56167b 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -278,6 +278,35 @@ static bool test_cp_enable(igt_output_t *output, > enum igt_commit_style s, > return ret; > } > > +static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[], enum > igt_commit_style s, Update enum from s to some proper name instead of a char. > + int valid_outputs) > +{ > + igt_display_t *display = &data.display; > + igt_plane_t *primary; > + bool ret; > + int count; > + u64 val; > + > + for (count = 0; count < valid_outputs; count++) { > + primary = igt_output_get_plane_type(hdcp_mst_output[count], > DRM_PLANE_TYPE_PRIMARY); > + igt_plane_set_fb(primary, &data.red); > + igt_output_set_prop_value(hdcp_mst_output[count], > IGT_CONNECTOR_CONTENT_PROTECTION, > + CP_UNDESIRED); > + } > + > + igt_display_commit2(display, s); > + > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_UNDESIRED, > + KERNEL_DISABLE_TIME_ALLOWED_MSEC); > + for (count = 1; count < valid_outputs; count++) { > + val = igt_output_get_prop(hdcp_mst_output[count], > + > IGT_CONNECTOR_CONTENT_PROTECTION); > + ret &= (val == CP_UNDESIRED); > + } > + > + igt_assert_f(ret, "Content Protection not cleared\n"); } Suggest to update string to "Content Protection not cleared on all outputs" > + > static void test_cp_disable(igt_output_t *output, enum igt_commit_style s) { > igt_display_t *display = &data.display; @@ -630,6 +659,49 @@ static > void test_cp_lic_on_mst(igt_output_t *mst_outputs[], int valid_outputs, b > } > } > > +static bool > +test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int Here we are trying to enable mst with cp, "test" should be removed. > valid_outputs, > + int retries, int content_type) { > + igt_display_t *display = &data.display; > + int retry_orig = retries, count; > + bool ret; > + u64 val; > + > + do { > + if (retry_orig != retries) > + test_mst_cp_disable(hdcp_mst_output, > COMMIT_ATOMIC, valid_outputs); > + > + for (count = 0; count < valid_outputs; count++) { > + igt_output_set_prop_value(hdcp_mst_output[count], > + > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > + > + if (hdcp_mst_output[count]- > >props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > + > igt_output_set_prop_value(hdcp_mst_output[count], > + > IGT_CONNECTOR_HDCP_CONTENT_TYPE, > + content_type); > + } > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_ENABLED, > + > KERNEL_AUTH_TIME_ALLOWED_MSEC); > + for (count = 1; count < valid_outputs; count++) { > + val = igt_output_get_prop(hdcp_mst_output[count], > + > IGT_CONNECTOR_CONTENT_PROTECTION); > + ret &= (val == CP_ENABLED); > + } > + > + retries -= 1; > + if (!ret || retries) > + igt_debug("Retry %d/3\n", 3 - retries); > + } while (retries && !ret); > + > + igt_assert_f(ret, "Content Protection not enabled on MST output\n"); > + > + return ret; > +} > + > static void > test_content_protection_mst(int content_type) { @@ -684,19 +756,9 @@ > test_content_protection_mst(int content_type) > igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > } > > - for (count = 0; count < valid_outputs; count++) { > - igt_output_set_prop_value(hdcp_mst_output[count], > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > - > - if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > - igt_output_set_prop_value(hdcp_mst_output[count], > IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); > - } > - > igt_display_commit2(display, COMMIT_ATOMIC); > > - for (count = 0; count < valid_outputs; count++) { > - ret = wait_for_prop_value(hdcp_mst_output[count], > CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); > - igt_assert_f(ret, "Content Protection not enabled on %s\n", > hdcp_mst_output[count]->name); > - } > + ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs, > 2, > +content_type); > > if (data.cp_tests & CP_LIC) > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); > -- > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase 2024-08-19 5:17 ` B, Jeevan @ 2024-08-19 5:22 ` Kandpal, Suraj 2024-08-19 5:32 ` Kandpal, Suraj 1 sibling, 0 replies; 16+ messages in thread From: Kandpal, Suraj @ 2024-08-19 5:22 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K > -----Original Message----- > From: B, Jeevan <jeevan.b@intel.com> > Sent: Monday, August 19, 2024 10:47 AM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: RE: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic > for mst usecase > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Suraj Kandpal > > Sent: Tuesday, August 13, 2024 9:50 AM > > To: igt-dev@lists.freedesktop.org > > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > > Subject: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry > > logic for mst usecase > > > > Add mst retry logic where it retries 3 times before failing the test. > > After every retry mst setup needs to be disabled so we need to add a > > function which disables mst in one commit. > > > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > tests/kms_content_protection.c | 84 > > +++++++++++++++++++++++++++++----- > > 1 file changed, 73 insertions(+), 11 deletions(-) > > > > diff --git a/tests/kms_content_protection.c > > b/tests/kms_content_protection.c index db6dc17b1..82a56167b 100644 > > --- a/tests/kms_content_protection.c > > +++ b/tests/kms_content_protection.c > > @@ -278,6 +278,35 @@ static bool test_cp_enable(igt_output_t *output, > > enum igt_commit_style s, > > return ret; > > } > > > > +static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[], enum > > igt_commit_style s, > Update enum from s to some proper name instead of a char. Will do but I was following the naming precedent already set in this file. Would this perhaps then mean that we need to rename all igt_commit_style s to have A proper variable name otherwise having it just in this function would end up looking very inconsistent Regards, Suraj Kandpal > > + int valid_outputs) > > +{ > > + igt_display_t *display = &data.display; > > + igt_plane_t *primary; > > + bool ret; > > + int count; > > + u64 val; > > + > > + for (count = 0; count < valid_outputs; count++) { > > + primary = > igt_output_get_plane_type(hdcp_mst_output[count], > > DRM_PLANE_TYPE_PRIMARY); > > + igt_plane_set_fb(primary, &data.red); > > + igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_CONTENT_PROTECTION, > > + CP_UNDESIRED); > > + } > > + > > + igt_display_commit2(display, s); > > + > > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_UNDESIRED, > > + KERNEL_DISABLE_TIME_ALLOWED_MSEC); > > + for (count = 1; count < valid_outputs; count++) { > > + val = igt_output_get_prop(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION); > > + ret &= (val == CP_UNDESIRED); > > + } > > + > > + igt_assert_f(ret, "Content Protection not cleared\n"); } > Suggest to update string to "Content Protection not cleared on all outputs" > > + > > static void test_cp_disable(igt_output_t *output, enum igt_commit_style s) > { > > igt_display_t *display = &data.display; @@ -630,6 +659,49 @@ static > > void test_cp_lic_on_mst(igt_output_t *mst_outputs[], int valid_outputs, b > > } > > } > > > > +static bool > > +test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int > Here we are trying to enable mst with cp, "test" should be removed. > > valid_outputs, > > + int retries, int content_type) { > > + igt_display_t *display = &data.display; > > + int retry_orig = retries, count; > > + bool ret; > > + u64 val; > > + > > + do { > > + if (retry_orig != retries) > > + test_mst_cp_disable(hdcp_mst_output, > > COMMIT_ATOMIC, valid_outputs); > > + > > + for (count = 0; count < valid_outputs; count++) { > > + igt_output_set_prop_value(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > > + > > + if (hdcp_mst_output[count]- > > >props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > > + > > igt_output_set_prop_value(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_HDCP_CONTENT_TYPE, > > + content_type); > > + } > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_ENABLED, > > + > > KERNEL_AUTH_TIME_ALLOWED_MSEC); > > + for (count = 1; count < valid_outputs; count++) { > > + val = igt_output_get_prop(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION); > > + ret &= (val == CP_ENABLED); > > + } > > + > > + retries -= 1; > > + if (!ret || retries) > > + igt_debug("Retry %d/3\n", 3 - retries); > > + } while (retries && !ret); > > + > > + igt_assert_f(ret, "Content Protection not enabled on MST output\n"); > > + > > + return ret; > > +} > > + > > static void > > test_content_protection_mst(int content_type) { @@ -684,19 +756,9 @@ > > test_content_protection_mst(int content_type) > > igt_require_f(ret == 0, "Commit failure during MST > modeset\n"); > > } > > > > - for (count = 0; count < valid_outputs; count++) { > > - igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > > - > > - if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > > - igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); > > - } > > - > > igt_display_commit2(display, COMMIT_ATOMIC); > > > > - for (count = 0; count < valid_outputs; count++) { > > - ret = wait_for_prop_value(hdcp_mst_output[count], > > CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); > > - igt_assert_f(ret, "Content Protection not enabled on %s\n", > > hdcp_mst_output[count]->name); > > - } > > + ret = test_mst_cp_enable_with_retry(hdcp_mst_output, > valid_outputs, > > 2, > > +content_type); > > > > if (data.cp_tests & CP_LIC) > > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); > > -- > > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase 2024-08-19 5:17 ` B, Jeevan 2024-08-19 5:22 ` Kandpal, Suraj @ 2024-08-19 5:32 ` Kandpal, Suraj 1 sibling, 0 replies; 16+ messages in thread From: Kandpal, Suraj @ 2024-08-19 5:32 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K > -----Original Message----- > From: B, Jeevan <jeevan.b@intel.com> > Sent: Monday, August 19, 2024 10:47 AM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: RE: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic > for mst usecase > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Suraj Kandpal > > Sent: Tuesday, August 13, 2024 9:50 AM > > To: igt-dev@lists.freedesktop.org > > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > > Subject: [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry > > logic for mst usecase > > > > Add mst retry logic where it retries 3 times before failing the test. > > After every retry mst setup needs to be disabled so we need to add a > > function which disables mst in one commit. > > > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > tests/kms_content_protection.c | 84 > > +++++++++++++++++++++++++++++----- > > 1 file changed, 73 insertions(+), 11 deletions(-) > > > > diff --git a/tests/kms_content_protection.c > > b/tests/kms_content_protection.c index db6dc17b1..82a56167b 100644 > > --- a/tests/kms_content_protection.c > > +++ b/tests/kms_content_protection.c > > @@ -278,6 +278,35 @@ static bool test_cp_enable(igt_output_t *output, > > enum igt_commit_style s, > > return ret; > > } > > > > +static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[], enum > > igt_commit_style s, > Update enum from s to some proper name instead of a char. > > + int valid_outputs) > > +{ > > + igt_display_t *display = &data.display; > > + igt_plane_t *primary; > > + bool ret; > > + int count; > > + u64 val; > > + > > + for (count = 0; count < valid_outputs; count++) { > > + primary = > igt_output_get_plane_type(hdcp_mst_output[count], > > DRM_PLANE_TYPE_PRIMARY); > > + igt_plane_set_fb(primary, &data.red); > > + igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_CONTENT_PROTECTION, > > + CP_UNDESIRED); > > + } > > + > > + igt_display_commit2(display, s); > > + > > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_UNDESIRED, > > + KERNEL_DISABLE_TIME_ALLOWED_MSEC); > > + for (count = 1; count < valid_outputs; count++) { > > + val = igt_output_get_prop(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION); > > + ret &= (val == CP_UNDESIRED); > > + } > > + > > + igt_assert_f(ret, "Content Protection not cleared\n"); } > Suggest to update string to "Content Protection not cleared on all outputs" Sure will do. > > + > > static void test_cp_disable(igt_output_t *output, enum igt_commit_style s) > { > > igt_display_t *display = &data.display; @@ -630,6 +659,49 @@ static > > void test_cp_lic_on_mst(igt_output_t *mst_outputs[], int valid_outputs, b > > } > > } > > > > +static bool > > +test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int > Here we are trying to enable mst with cp, "test" should be removed. I think test here seems appropriate since not only is enabling MST we also have assertions to check if CP has been enabled or not also, this follows a similar style of naming found in this test when retrying for a single connector. Also a suggestion maybe adding a new line before and after the review make the inline comments more clearer to see I almost missed the two comments I address in the reply Regards, Suraj Kandpal > > valid_outputs, > > + int retries, int content_type) { > > + igt_display_t *display = &data.display; > > + int retry_orig = retries, count; > > + bool ret; > > + u64 val; > > + > > + do { > > + if (retry_orig != retries) > > + test_mst_cp_disable(hdcp_mst_output, > > COMMIT_ATOMIC, valid_outputs); > > + > > + for (count = 0; count < valid_outputs; count++) { > > + igt_output_set_prop_value(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > > + > > + if (hdcp_mst_output[count]- > > >props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > > + > > igt_output_set_prop_value(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_HDCP_CONTENT_TYPE, > > + content_type); > > + } > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + > > + ret = wait_for_prop_value(hdcp_mst_output[0], CP_ENABLED, > > + > > KERNEL_AUTH_TIME_ALLOWED_MSEC); > > + for (count = 1; count < valid_outputs; count++) { > > + val = igt_output_get_prop(hdcp_mst_output[count], > > + > > IGT_CONNECTOR_CONTENT_PROTECTION); > > + ret &= (val == CP_ENABLED); > > + } > > + > > + retries -= 1; > > + if (!ret || retries) > > + igt_debug("Retry %d/3\n", 3 - retries); > > + } while (retries && !ret); > > + > > + igt_assert_f(ret, "Content Protection not enabled on MST output\n"); > > + > > + return ret; > > +} > > + > > static void > > test_content_protection_mst(int content_type) { @@ -684,19 +756,9 @@ > > test_content_protection_mst(int content_type) > > igt_require_f(ret == 0, "Commit failure during MST > modeset\n"); > > } > > > > - for (count = 0; count < valid_outputs; count++) { > > - igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > > - > > - if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > > - igt_output_set_prop_value(hdcp_mst_output[count], > > IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); > > - } > > - > > igt_display_commit2(display, COMMIT_ATOMIC); > > > > - for (count = 0; count < valid_outputs; count++) { > > - ret = wait_for_prop_value(hdcp_mst_output[count], > > CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); > > - igt_assert_f(ret, "Content Protection not enabled on %s\n", > > hdcp_mst_output[count]->name); > > - } > > + ret = test_mst_cp_enable_with_retry(hdcp_mst_output, > valid_outputs, > > 2, > > +content_type); > > > > if (data.cp_tests & CP_LIC) > > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); > > -- > > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal ` (2 preceding siblings ...) 2024-08-13 4:19 ` [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal @ 2024-08-13 4:19 ` Suraj Kandpal 2024-08-19 5:23 ` B, Jeevan 2024-08-13 5:00 ` ✓ Fi.CI.BAT: success for Improve MST HDCP tests Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Suraj Kandpal @ 2024-08-13 4:19 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, Suraj Kandpal Set fb as red when HDCP is disabled and green when HDCP is enabled rather than randomly setting the color. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- tests/kms_content_protection.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index 82a56167b..ea7f5b984 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -521,12 +521,11 @@ static bool sink_hdcp2_capable(igt_output_t *output) return strstr(buf, "HDCP2.2"); } -static void prepare_modeset_on_mst_output(igt_output_t *output) +static void prepare_modeset_on_mst_output(igt_output_t *output, bool is_enabled) { drmModeModeInfo *mode; igt_plane_t *primary; int width, height; - enum pipe pipe = output->pending_pipe; mode = igt_output_get_mode(output); @@ -535,8 +534,8 @@ static void prepare_modeset_on_mst_output(igt_output_t *output) primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_plane_set_fb(primary, NULL); - igt_plane_set_fb(primary, pipe % 2 ? &data.red : &data.green); - igt_fb_set_size(pipe % 2 ? &data.red : &data.green, primary, width, height); + igt_plane_set_fb(primary, is_enabled ? &data.green : &data.red); + igt_fb_set_size(is_enabled ? &data.green : &data.red, primary, width, height); igt_plane_set_size(primary, width, height); } @@ -733,7 +732,7 @@ test_content_protection_mst(int content_type) igt_assert_f(pipe_found, "No valid pipe found for %s\n", output->name); igt_output_set_pipe(output, pipe); - prepare_modeset_on_mst_output(output); + prepare_modeset_on_mst_output(output, false); dp_mst_outputs++; if (output_hdcp_capable(output, content_type)) hdcp_mst_output[valid_outputs++] = output; @@ -750,7 +749,7 @@ test_content_protection_mst(int content_type) igt_require_f(found, "No valid mode combo found for MST modeset\n"); for (count = 0; count < valid_outputs; count++) - prepare_modeset_on_mst_output(hdcp_mst_output[count]); + prepare_modeset_on_mst_output(hdcp_mst_output[count], false); ret = igt_display_try_commit2(display, COMMIT_ATOMIC); igt_require_f(ret == 0, "Commit failure during MST modeset\n"); @@ -760,6 +759,13 @@ test_content_protection_mst(int content_type) ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs, 2, content_type); + if (ret) { + for (i = 0; i < valid_outputs; i++) + prepare_modeset_on_mst_output(hdcp_mst_output[count], true); + + igt_display_commit2(display, COMMIT_ATOMIC); + } + if (data.cp_tests & CP_LIC) test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); -- 2.43.2 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status 2024-08-13 4:19 ` [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal @ 2024-08-19 5:23 ` B, Jeevan 2024-08-19 5:34 ` Kandpal, Suraj 0 siblings, 1 reply; 16+ messages in thread From: B, Jeevan @ 2024-08-19 5:23 UTC (permalink / raw) To: Kandpal, Suraj, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K, Kandpal, Suraj > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Suraj > Kandpal > Sent: Tuesday, August 13, 2024 9:50 AM > To: igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green > based on CP Status > > Set fb as red when HDCP is disabled and green when HDCP is enabled rather > than randomly setting the color. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > tests/kms_content_protection.c | 18 ++++++++++++------ > 1 file changed, 12 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index 82a56167b..ea7f5b984 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -521,12 +521,11 @@ static bool sink_hdcp2_capable(igt_output_t > *output) > return strstr(buf, "HDCP2.2"); > } > > -static void prepare_modeset_on_mst_output(igt_output_t *output) > +static void prepare_modeset_on_mst_output(igt_output_t *output, bool > +is_enabled) > { > drmModeModeInfo *mode; > igt_plane_t *primary; > int width, height; > - enum pipe pipe = output->pending_pipe; > > mode = igt_output_get_mode(output); > > @@ -535,8 +534,8 @@ static void > prepare_modeset_on_mst_output(igt_output_t *output) > > primary = igt_output_get_plane_type(output, > DRM_PLANE_TYPE_PRIMARY); > igt_plane_set_fb(primary, NULL); > - igt_plane_set_fb(primary, pipe % 2 ? &data.red : &data.green); > - igt_fb_set_size(pipe % 2 ? &data.red : &data.green, primary, width, > height); > + igt_plane_set_fb(primary, is_enabled ? &data.green : &data.red); > + igt_fb_set_size(is_enabled ? &data.green : &data.red, primary, width, > +height); > igt_plane_set_size(primary, width, height); } > > @@ -733,7 +732,7 @@ test_content_protection_mst(int content_type) > igt_assert_f(pipe_found, "No valid pipe found for %s\n", > output->name); > > igt_output_set_pipe(output, pipe); > - prepare_modeset_on_mst_output(output); > + prepare_modeset_on_mst_output(output, false); > dp_mst_outputs++; > if (output_hdcp_capable(output, content_type)) > hdcp_mst_output[valid_outputs++] = output; @@ - > 750,7 +749,7 @@ test_content_protection_mst(int content_type) > igt_require_f(found, "No valid mode combo found for MST > modeset\n"); > > for (count = 0; count < valid_outputs; count++) > - > prepare_modeset_on_mst_output(hdcp_mst_output[count]); > + > prepare_modeset_on_mst_output(hdcp_mst_output[count], false); > > ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > @@ -760,6 +759,13 @@ test_content_protection_mst(int content_type) > > ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs, > 2, content_type); > > + if (ret) { > + for (i = 0; i < valid_outputs; i++) > + > prepare_modeset_on_mst_output(hdcp_mst_output[count], true); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + } > + This is unclear why its added, please describe in commit message. > if (data.cp_tests & CP_LIC) > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); > > -- > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status 2024-08-19 5:23 ` B, Jeevan @ 2024-08-19 5:34 ` Kandpal, Suraj 0 siblings, 0 replies; 16+ messages in thread From: Kandpal, Suraj @ 2024-08-19 5:34 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Cc: Samala, Pranay, Nautiyal, Ankit K > -----Original Message----- > From: B, Jeevan <jeevan.b@intel.com> > Sent: Monday, August 19, 2024 10:54 AM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: RE: [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen > red/green based on CP Status > > > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Suraj Kandpal > > Sent: Tuesday, August 13, 2024 9:50 AM > > To: igt-dev@lists.freedesktop.org > > Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K > > <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com> > > Subject: [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen > > red/green based on CP Status > > > > Set fb as red when HDCP is disabled and green when HDCP is enabled > > rather than randomly setting the color. > > > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > tests/kms_content_protection.c | 18 ++++++++++++------ > > 1 file changed, 12 insertions(+), 6 deletions(-) > > > > diff --git a/tests/kms_content_protection.c > > b/tests/kms_content_protection.c index 82a56167b..ea7f5b984 100644 > > --- a/tests/kms_content_protection.c > > +++ b/tests/kms_content_protection.c > > @@ -521,12 +521,11 @@ static bool sink_hdcp2_capable(igt_output_t > > *output) > > return strstr(buf, "HDCP2.2"); > > } > > > > -static void prepare_modeset_on_mst_output(igt_output_t *output) > > +static void prepare_modeset_on_mst_output(igt_output_t *output, bool > > +is_enabled) > > { > > drmModeModeInfo *mode; > > igt_plane_t *primary; > > int width, height; > > - enum pipe pipe = output->pending_pipe; > > > > mode = igt_output_get_mode(output); > > > > @@ -535,8 +534,8 @@ static void > > prepare_modeset_on_mst_output(igt_output_t *output) > > > > primary = igt_output_get_plane_type(output, > DRM_PLANE_TYPE_PRIMARY); > > igt_plane_set_fb(primary, NULL); > > - igt_plane_set_fb(primary, pipe % 2 ? &data.red : &data.green); > > - igt_fb_set_size(pipe % 2 ? &data.red : &data.green, primary, width, > > height); > > + igt_plane_set_fb(primary, is_enabled ? &data.green : &data.red); > > + igt_fb_set_size(is_enabled ? &data.green : &data.red, primary, > > +width, height); > > igt_plane_set_size(primary, width, height); } > > > > @@ -733,7 +732,7 @@ test_content_protection_mst(int content_type) > > igt_assert_f(pipe_found, "No valid pipe found for %s\n", > > output->name); > > > > igt_output_set_pipe(output, pipe); > > - prepare_modeset_on_mst_output(output); > > + prepare_modeset_on_mst_output(output, false); > > dp_mst_outputs++; > > if (output_hdcp_capable(output, content_type)) > > hdcp_mst_output[valid_outputs++] = output; @@ - > > 750,7 +749,7 @@ test_content_protection_mst(int content_type) > > igt_require_f(found, "No valid mode combo found for MST > > modeset\n"); > > > > for (count = 0; count < valid_outputs; count++) > > - > > prepare_modeset_on_mst_output(hdcp_mst_output[count]); > > + > > prepare_modeset_on_mst_output(hdcp_mst_output[count], false); > > > > ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > > igt_require_f(ret == 0, "Commit failure during MST > modeset\n"); @@ > > -760,6 +759,13 @@ test_content_protection_mst(int content_type) > > > > ret = test_mst_cp_enable_with_retry(hdcp_mst_output, > valid_outputs, > > 2, content_type); > > > > + if (ret) { > > + for (i = 0; i < valid_outputs; i++) > > + > > prepare_modeset_on_mst_output(hdcp_mst_output[count], true); > > + > > + igt_display_commit2(display, COMMIT_ATOMIC); > > + } > > + > This is unclear why its added, please describe in commit message. I think its pretty clear in the commit message because we want to see a red screen when HDCP is disabled and green screen when HDCP is enabled indicating HDCP status visually. This follows the same rule we have for in single output HDCP enablement. Not sure what more Is required here. Regards, Suraj Kandpal > > if (data.cp_tests & CP_LIC) > > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0); > > > > -- > > 2.43.2 ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Fi.CI.BAT: success for Improve MST HDCP tests 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal ` (3 preceding siblings ...) 2024-08-13 4:19 ` [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal @ 2024-08-13 5:00 ` Patchwork 2024-08-13 5:00 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-08-13 5:00 UTC (permalink / raw) To: Suraj Kandpal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13162 bytes --] == Series Details == Series: Improve MST HDCP tests URL : https://patchwork.freedesktop.org/series/137215/ State : success == Summary == CI Bug Log - changes from IGT_7967 -> IGTPW_11562 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/index.html Participating hosts (39 -> 41) ------------------------------ Additional (4): bat-dg2-11 fi-cfl-8109u bat-mtlp-6 fi-bsw-n3050 Missing (2): fi-snb-2520m fi-kbl-8809g Known issues ------------ Here are the changes found in IGTPW_11562 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-6: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@fbdev@info.html * igt@fbdev@write: - bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#2582]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@fbdev@write.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][5] +19 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html - fi-cfl-8109u: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#4083]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@gem_mmap@basic.html - bat-mtlp-6: NOTRUN -> [SKIP][9] ([i915#4083]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@gem_mmap@basic.html * igt@gem_tiled_blits@basic: - bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#4079]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@gem_tiled_pread_basic.html - bat-mtlp-6: NOTRUN -> [SKIP][13] ([i915#4079]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#11681] / [i915#6621]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@i915_pm_rps@basic-api.html - bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#11681] / [i915#6621]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][16] ([i915#4212] / [i915#9792]) +8 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#4212]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#5190] / [i915#9792]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#5190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#4215] / [i915#5190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#9792]) +17 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-mtlp-6: NOTRUN -> [SKIP][24] ([i915#3637] / [i915#9792]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-11: NOTRUN -> [SKIP][25] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-11: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html - bat-mtlp-6: NOTRUN -> [SKIP][27] ([i915#5274] / [i915#9792]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][28] ([i915#4342] / [i915#5354] / [i915#9792]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-11: NOTRUN -> [SKIP][29] ([i915#5354]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html - fi-cfl-8109u: NOTRUN -> [SKIP][30] +11 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html - bat-mtlp-6: NOTRUN -> [SKIP][31] ([i915#5354] / [i915#9792]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-cursor-plane-move: - bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-11: NOTRUN -> [SKIP][33] ([i915#1072] / [i915#9732]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-6: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#8809] / [i915#9792]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-11: NOTRUN -> [SKIP][36] ([i915#3708]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html - bat-mtlp-6: NOTRUN -> [SKIP][37] ([i915#3708] / [i915#9792]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#3708] / [i915#4077]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html - bat-mtlp-6: NOTRUN -> [SKIP][39] ([i915#3708] / [i915#4077]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#3291] / [i915#3708]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-dg2-11/igt@prime_vgem@basic-read.html - bat-mtlp-6: NOTRUN -> [SKIP][41] ([i915#3708]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-mtlp-6: NOTRUN -> [SKIP][42] ([i915#10216] / [i915#3708]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-mtlp-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-arls-1: [DMESG-WARN][43] ([i915#11349] / [i915#11378]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/bat-arls-1/igt@i915_selftest@live@hangcheck.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/bat-arls-1/igt@i915_selftest@live@hangcheck.html [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7967 -> IGTPW_11562 CI-20190529: 20190529 CI_DRM_15221: bb06cec392c188bc980be5cee9a85240ce866b78 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11562: 1b143bd372b1cedd2a00ca9986f0fe85d573db5f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/index.html [-- Attachment #2: Type: text/html, Size: 17094 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ CI.xeBAT: success for Improve MST HDCP tests 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal ` (4 preceding siblings ...) 2024-08-13 5:00 ` ✓ Fi.CI.BAT: success for Improve MST HDCP tests Patchwork @ 2024-08-13 5:00 ` Patchwork 2024-08-13 7:59 ` ✗ CI.xeFULL: failure " Patchwork 2024-08-13 10:16 ` ✗ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-08-13 5:00 UTC (permalink / raw) To: Suraj Kandpal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1478 bytes --] == Series Details == Series: Improve MST HDCP tests URL : https://patchwork.freedesktop.org/series/137215/ State : success == Summary == CI Bug Log - changes from XEIGT_7967_BAT -> XEIGTPW_11562_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11562_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [FAIL][1] ([Intel XE#886]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_7967 -> IGTPW_11562 IGTPW_11562: 1b143bd372b1cedd2a00ca9986f0fe85d573db5f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/index.html [-- Attachment #2: Type: text/html, Size: 2041 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ CI.xeFULL: failure for Improve MST HDCP tests 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal ` (5 preceding siblings ...) 2024-08-13 5:00 ` ✓ CI.xeBAT: " Patchwork @ 2024-08-13 7:59 ` Patchwork 2024-08-13 10:16 ` ✗ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-08-13 7:59 UTC (permalink / raw) To: Suraj Kandpal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 70252 bytes --] == Series Details == Series: Improve MST HDCP tests URL : https://patchwork.freedesktop.org/series/137215/ State : failure == Summary == CI Bug Log - changes from XEIGT_7967_full -> XEIGTPW_11562_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11562_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11562_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11562_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@bpc-switch-suspend: - shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_hdr@bpc-switch-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_hdr@bpc-switch-suspend.html * igt@xe_exec_threads@threads-bal-basic: - shard-lnl: [PASS][3] -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_exec_threads@threads-bal-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@xe_exec_threads@threads-bal-basic.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-dg2-set2: [PASS][5] -> [DMESG-FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html #### Warnings #### * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][7] ([Intel XE#1201]) -> [SKIP][8] +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_oa@non-privileged-map-oa-buffer.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@xe_ccs@ctrl-surf-copy: - {shard-bmg}: [PASS][9] -> [INCOMPLETE][10] +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@xe_ccs@ctrl-surf-copy.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-7/igt@xe_ccs@ctrl-surf-copy.html * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-prefetch: - {shard-bmg}: [PASS][11] -> [DMESG-WARN][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-prefetch.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-2/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-prefetch.html Known issues ------------ Here are the changes found in XEIGTPW_11562_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][13] -> [FAIL][14] ([Intel XE#827]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_async_flips@alternate-sync-async-flip.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#911]) +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#1659]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2191]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1399]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#314]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#306]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#373]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1188]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-256x256: - shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1195]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-256x256.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-256x256.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-lnl: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#877]) +1 other test dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_cursor_legacy@torture-bo@pipe-a.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#703]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1401] / [Intel XE#1745]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1401]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#352]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#616]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#651]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1503] / [Intel XE#599]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_backlight@basic-brightness: - shard-lnl: [PASS][47] -> [SKIP][48] ([Intel XE#870]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_pm_backlight@basic-brightness.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@fbc-pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1406]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#929]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: NOTRUN -> [DMESG-WARN][51] ([Intel XE#1638]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#771] / [Intel XE#899]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#899]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#688]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-6/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1473]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#1195] / [Intel XE#1473]) +1 other test incomplete [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_evict@evict-threads-large.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][62] -> [TIMEOUT][63] ([Intel XE#2105]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#1192]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_live_ktest@xe_dma_buf.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#1192] / [Intel XE#1201]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2019]) +2 other tests dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_module_load@reload-no-display.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-lnl: NOTRUN -> [FAIL][70] ([Intel XE#2514]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#979]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2284] / [Intel XE#366]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-3/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-exec-after: - shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#2028]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@xe_pm@s2idle-exec-after.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-exec-after: - shard-lnl: [PASS][77] -> [ABORT][78] ([Intel XE#1358] / [Intel XE#1607]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@xe_pm@s4-exec-after.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-2/igt@xe_pm@s4-exec-after.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [PASS][79] -> [DMESG-WARN][80] ([Intel XE#2280]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_pm@s4-mocs.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_pm@s4-mocs.html #### Possible fixes #### * igt@fbdev@unaligned-read: - {shard-bmg}: [DMESG-WARN][81] -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-2/igt@fbdev@unaligned-read.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-4/igt@fbdev@unaligned-read.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2: - {shard-bmg}: [DMESG-WARN][83] ([Intel XE#1033]) -> [PASS][84] +1 other test pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-2.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-dg2-set2: [DMESG-WARN][85] ([Intel XE#1705]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][87] ([Intel XE#1426]) -> [PASS][88] +3 other tests pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [FAIL][89] ([Intel XE#1426]) -> [PASS][90] +1 other test pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [FAIL][91] ([Intel XE#1659]) -> [PASS][92] +2 other tests pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][93] ([Intel XE#877]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3: - {shard-bmg}: [FAIL][95] ([Intel XE#2436]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-suspend-interruptible: - {shard-bmg}: [INCOMPLETE][97] -> [PASS][98] +3 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][99] ([Intel XE#2019]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-6.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - {shard-bmg}: [DMESG-WARN][101] ([Intel XE#877]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-WARN][103] ([Intel XE#324]) -> [PASS][104] +1 other test pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-8/igt@kms_plane@plane-position-covered.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_plane@plane-position-covered.html * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2: - {shard-bmg}: [FAIL][105] -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-4/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html * igt@kms_pm_backlight@fade-with-dpms: - shard-lnl: [SKIP][107] ([Intel XE#870]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_pm_backlight@fade-with-dpms.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][109] ([Intel XE#718]) -> [PASS][110] +1 other test pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-lnl: [DMESG-WARN][111] ([Intel XE#1705]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_universal_plane@cursor-fb-leak: - {shard-bmg}: [FAIL][113] ([Intel XE#899]) -> [PASS][114] +1 other test pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][115] ([Intel XE#899]) -> [PASS][116] +1 other test pass [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1: - shard-lnl: [FAIL][117] -> [PASS][118] +1 other test pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1: - shard-lnl: [FAIL][119] ([Intel XE#2028]) -> [PASS][120] +3 other tests pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][121] ([Intel XE#2443]) -> [PASS][122] +1 other test pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@kms_vrr@flip-basic.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-1/igt@kms_vrr@flip-basic.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-dg2-set2: [DMESG-WARN][123] -> [PASS][124] +1 other test pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_evict@evict-beng-mixed-threads-large: - {shard-bmg}: [TIMEOUT][125] ([Intel XE#1473]) -> [PASS][126] +2 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][127] ([Intel XE#1473]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [DMESG-WARN][129] ([Intel XE#1620]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_module_load@unload: - shard-dg2-set2: [DMESG-WARN][131] ([Intel XE#1551] / [Intel XE#2019]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_module_load@unload.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@xe_module_load@unload.html * igt@xe_oa@mmio-triggered-reports: - {shard-bmg}: [FAIL][133] ([Intel XE#2249]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-8/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [FAIL][135] ([Intel XE#2249]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@xe_oa@mmio-triggered-reports.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@oa-regs-whitelisted: - {shard-bmg}: [FAIL][137] ([Intel XE#2514]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-bmg-2/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [INCOMPLETE][139] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][141] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][143] ([Intel XE#958]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][146] ([Intel XE#316]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][147] ([Intel XE#316]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][149] ([Intel XE#607]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#607]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][151] ([Intel XE#1124]) -> [SKIP][152] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][153] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][154] ([Intel XE#1124]) +8 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][156] ([Intel XE#367]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][157] ([Intel XE#2191]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#2191]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][160] ([Intel XE#2191]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: [SKIP][161] ([Intel XE#367]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#367]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][164] ([Intel XE#787]) +55 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][165] ([Intel XE#787]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][167] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][169] ([Intel XE#1252]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#1252]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][171] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][172] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: [SKIP][173] ([Intel XE#314]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][175] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][176] ([Intel XE#373]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_chamelium_audio@dp-audio.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][178] ([Intel XE#306]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][179] ([Intel XE#306]) -> [SKIP][180] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_color@gamma.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][181] ([Intel XE#373]) -> [SKIP][182] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][184] ([Intel XE#308]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][185] ([Intel XE#308]) -> [SKIP][186] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][187] ([Intel XE#323]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#323]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][190] ([Intel XE#776]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_fbcon_fbt@psr.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][191] ([Intel XE#776]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#776]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][193] ([Intel XE#1138]) -> [SKIP][194] ([Intel XE#1138] / [Intel XE#1201]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_feature_discovery@display-4x.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][195] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][196] ([Intel XE#1135]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_feature_discovery@psr1.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_feature_discovery@psr1.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][197] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][198] ([Intel XE#658]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][200] ([Intel XE#651]) +22 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][201] ([Intel XE#651]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#651]) +30 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][203] ([Intel XE#658]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#658]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: [SKIP][205] ([Intel XE#653]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#653]) +30 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][207] ([Intel XE#1158]) -> [SKIP][208] ([Intel XE#1158] / [Intel XE#1201]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][210] ([Intel XE#653]) +23 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][211] ([Intel XE#605]) -> [SKIP][212] ([Intel XE#1201] / [Intel XE#605]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][214] ([Intel XE#455]) +15 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_hdr@invalid-hdr.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_hdr@invalid-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][215] ([Intel XE#356]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#356]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-set2: [SKIP][217] ([Intel XE#455]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#455]) +19 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_lowres@tiling-y.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][220] ([Intel XE#455] / [Intel XE#498]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][221] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][222] ([Intel XE#498]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][223] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][225] ([Intel XE#2318]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][228] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][230] ([Intel XE#2318]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: [SKIP][231] ([Intel XE#870]) -> [SKIP][232] ([Intel XE#1201] / [Intel XE#870]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][233] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][234] ([Intel XE#1129]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][235] ([Intel XE#908]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#908]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_pm_dc@dc6-dpms.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][238] ([Intel XE#1489]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][239] ([Intel XE#1489]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][241] ([Intel XE#1122]) -> [SKIP][242] ([Intel XE#1122] / [Intel XE#1201]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][243] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][244] ([Intel XE#1122]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][245] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][246] ([Intel XE#929]) +10 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][247] ([Intel XE#929]) -> [SKIP][248] ([Intel XE#1201] / [Intel XE#929]) +15 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr@psr-dpms.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][249] ([Intel XE#1149]) -> [SKIP][250] ([Intel XE#1149] / [Intel XE#1201]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][251] ([Intel XE#327]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][253] ([Intel XE#1127]) -> [SKIP][254] ([Intel XE#1127] / [Intel XE#1201]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][256] ([Intel XE#327]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][257] ([Intel XE#330]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#330]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [DMESG-WARN][259] ([Intel XE#2019]) -> [DMESG-WARN][260] ([Intel XE#2019] / [Intel XE#2226]) +1 other test dmesg-warn [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-466/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][261] ([Intel XE#1201] / [Intel XE#2168]) -> [SKIP][262] ([Intel XE#2168]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_vrr@cmrr.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_vrr@cmrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][264] ([Intel XE#756]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][265] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][266] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][267] ([Intel XE#1123]) -> [SKIP][268] ([Intel XE#1123] / [Intel XE#1201]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][269] ([Intel XE#1126]) -> [SKIP][270] ([Intel XE#1126] / [Intel XE#1201]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][271] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][272] ([Intel XE#1126]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [TIMEOUT][273] ([Intel XE#1473]) -> [INCOMPLETE][274] ([Intel XE#1195] / [Intel XE#1473]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_evict@evict-cm-threads-large.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][275] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][276] ([Intel XE#1041] / [Intel XE#1473]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][277] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][278] ([Intel XE#288]) +21 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][279] ([Intel XE#288]) -> [SKIP][280] ([Intel XE#1201] / [Intel XE#288]) +26 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_module_load@force-load: - shard-dg2-set2: [SKIP][281] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][282] ([Intel XE#378]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_module_load@force-load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_module_load@force-load.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][283] -> [SKIP][284] ([Intel XE#1201]) +8 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_oa@closed-fd-and-unmapped-access.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][285] ([Intel XE#944]) -> [SKIP][286] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][287] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][288] ([Intel XE#944]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7967/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941 [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019 [Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2226 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2517 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7967 -> IGTPW_11562 IGTPW_11562: 1b143bd372b1cedd2a00ca9986f0fe85d573db5f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1756-bb06cec392c188bc980be5cee9a85240ce866b78: bb06cec392c188bc980be5cee9a85240ce866b78 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11562/index.html [-- Attachment #2: Type: text/html, Size: 89193 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Fi.CI.IGT: failure for Improve MST HDCP tests 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal ` (6 preceding siblings ...) 2024-08-13 7:59 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-08-13 10:16 ` Patchwork 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-08-13 10:16 UTC (permalink / raw) To: Kandpal, Suraj; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 91433 bytes --] == Series Details == Series: Improve MST HDCP tests URL : https://patchwork.freedesktop.org/series/137215/ State : failure == Summary == CI Bug Log - changes from IGT_7967_full -> IGTPW_11562_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11562_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11562_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11562_full: ### IGT changes ### #### Possible regressions #### * igt@gem_caching@read-writes: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-glk5/igt@gem_caching@read-writes.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk6/igt@gem_caching@read-writes.html * igt@gem_workarounds@suspend-resume: - shard-tglu: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-tglu-8/igt@gem_workarounds@suspend-resume.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@gem_workarounds@suspend-resume.html Known issues ------------ Here are the changes found in IGTPW_11562_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9318]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy@bcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@drm_fdinfo@busy@bcs0.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-4/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: NOTRUN -> [FAIL][13] ([i915#7742]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#7742]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][16] ([i915#11900] / [i915#7742]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-8/igt@gem_caching@reads.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-14/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-tglu: [PASS][30] -> [ABORT][31] ([i915#11713]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-tglu-9/igt@gem_exec_big@single.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6334]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][34] ([i915#2842]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-glk: NOTRUN -> [FAIL][35] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842]) +2 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +12 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-none.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify.html - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#284]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-4/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-10/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-8/igt@gem_pread@display.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-13/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +14 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@mmap-offset-banned@gtt: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@gem_userptr_blits@mmap-offset-banned@gtt.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][80] +17 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@gen9_exec_parse@allowed-all.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][83] -> [ABORT][84] ([i915#5566]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-glk6/igt@gen9_exec_parse@allowed-single.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-9/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][88] -> [ABORT][89] ([i915#10887] / [i915#9820]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#6412]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#8399]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#6590]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-14/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][93] ([i915#3591]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][94] ([i915#8346]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4387]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#5723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][100] ([i915#9311]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-2/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#7707]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#8709]) +11 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6228]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#9531]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: [PASS][106] -> [FAIL][107] ([i915#11859]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-glk5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][108] ([i915#5956]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [PASS][110] -> [FAIL][111] ([i915#5956]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][112] -> [FAIL][113] ([i915#11808]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][114] ([i915#5956]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +8 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#10434] / [i915#6095]) +9 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +91 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#6095]) +75 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +169 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +27 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][129] +167 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk1/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3742]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4087]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7828]) +14 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-10/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#9979]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3116]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3299]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3299]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][145] ([i915#7173]) +1 other test timeout [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8814]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#11453]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#11453]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#11453]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#11453]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555]) +10 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#5354]) +17 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#9809]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#9067]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9833]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9723]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#9723]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#8588]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3804]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#1257]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9053]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3469]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-14/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#1839]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-8/igt@kms_feature_discovery@display-2x.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9337]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9337]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#658]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][182] ([i915#658]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-4/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][184] -> [FAIL][185] ([i915#2122]) +1 other test fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#9934]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8810]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) +6 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8810]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +9 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#5439]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#5439]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#10055]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3458]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3023]) +32 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][202] +44 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][203] +44 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][204] +32 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +10 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9766]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +23 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +15 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1825]) +18 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#1825]) +54 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6301]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#6301]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][217] +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#11614] / [i915#3582]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#6953]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9423]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9423]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9728]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9728]) +7 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#5235] / [i915#9423]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9423]) +24 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#5235]) +8 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#5235]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#9728]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#5354]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#5354]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3361]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3361]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#8430]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#8430]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9519]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9519]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][238] -> [SKIP][239] ([i915#9519]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][240] -> [SKIP][241] ([i915#9519]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#9519]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#11520]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#11520]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#11520]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#11520]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [ABORT][247] ([i915#11897]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf@psr2-pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4348]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-5/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#1072] / [i915#9732]) +9 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#9732]) +8 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9688]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-cpu@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9732]) +36 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#1072] / [i915#9732]) +26 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#4077] / [i915#9688]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-5/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9685]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#5289]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#5289]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - shard-dg1: [PASS][259] -> [FAIL][260] ([i915#5465]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg1-17/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8623]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [PASS][262] -> [FAIL][263] ([i915#9196]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][264] ([i915#9196]) +2 other tests fail [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-10/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#2437]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#2437] / [i915#9412]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#2437]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2434]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][270] ([i915#2434]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#2434]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-6/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#2433]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#8850]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#8850]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#8516]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3291] / [i915#3708]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#3708]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3708]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#9917]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#9917]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#9917]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#9917]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][283] ([i915#9781]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#4818]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [FAIL][285] ([i915#5784]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-4/igt@gem_eio@kms.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [FAIL][287] ([i915#2842]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs: - shard-glk: [FAIL][289] ([i915#11859]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk1/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1: - shard-snb: [FAIL][291] ([i915#5956]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [FAIL][293] ([i915#11808] / [i915#5956]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-dg1: [INCOMPLETE][295] -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg1-14/igt@kms_cursor_legacy@single-move@all-pipes.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-18/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][297] ([i915#2122]) -> [PASS][298] +1 other test pass [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][299] ([i915#6880]) -> [PASS][300] +1 other test pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][301] -> [PASS][302] +3 other tests pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][303] ([i915#9295]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][305] ([i915#9519]) -> [PASS][306] +2 other tests pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][307] ([i915#9519]) -> [PASS][308] +2 other tests pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][309] ([IGT#2]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-6/igt@kms_sysfs_edid_timing.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][311] ([i915#9196]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: - shard-dg1: [FAIL][313] ([i915#9196]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][315] -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-rkl-1/igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-2.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-rkl-1/igt@kms_vblank@query-busy-hang@pipe-a-hdmi-a-2.html * igt@prime_busy@hang@vecs1: - shard-dg2: [INCOMPLETE][317] -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-5/igt@prime_busy@hang@vecs1.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@prime_busy@hang@vecs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][319] ([i915#11814]) -> [ABORT][320] ([i915#11814] / [i915#11815]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][321] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][322] ([i915#7118] / [i915#9424]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_content_protection@type1.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-10/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][323] ([i915#11453]) -> [SKIP][324] ([i915#11453] / [i915#3359]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: [SKIP][325] ([i915#11453] / [i915#3359]) -> [SKIP][326] ([i915#11453]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][327] ([i915#3458]) -> [SKIP][328] ([i915#10433] / [i915#3458]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_psr@fbc-psr-basic: - shard-dg2: [SKIP][329] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][330] ([i915#1072] / [i915#9732]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_psr@fbc-psr-basic.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: [SKIP][331] ([i915#1072] / [i915#9732]) -> [SKIP][332] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: [SKIP][333] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][334] ([i915#11131] / [i915#5190]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: [SKIP][335] ([i915#11131]) -> [SKIP][336] ([i915#11131] / [i915#4235]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [SKIP][337] -> [FAIL][338] ([i915#10959]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][339] ([i915#9100]) -> [FAIL][340] ([i915#7484]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7967/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11897]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11897 [i915#11900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11900 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7967 -> IGTPW_11562 CI-20190529: 20190529 CI_DRM_15221: bb06cec392c188bc980be5cee9a85240ce866b78 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11562: 1b143bd372b1cedd2a00ca9986f0fe85d573db5f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7967: 290bdef9033c8b185922f02cd05d62fcc0091c15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11562/index.html [-- Attachment #2: Type: text/html, Size: 113318 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-08-19 5:46 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-13 4:19 [PATCH i-g-t 0/4] Improve MST HDCP tests Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 1/4] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal 2024-08-13 4:19 ` [PATCH i-g-t 2/4] tests/kms_content_protection: Move try commit call Suraj Kandpal 2024-08-19 5:04 ` B, Jeevan 2024-08-19 5:18 ` Kandpal, Suraj 2024-08-13 4:19 ` [PATCH i-g-t 3/4] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal 2024-08-19 5:17 ` B, Jeevan 2024-08-19 5:22 ` Kandpal, Suraj 2024-08-19 5:32 ` Kandpal, Suraj 2024-08-13 4:19 ` [PATCH i-g-t 4/4] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal 2024-08-19 5:23 ` B, Jeevan 2024-08-19 5:34 ` Kandpal, Suraj 2024-08-13 5:00 ` ✓ Fi.CI.BAT: success for Improve MST HDCP tests Patchwork 2024-08-13 5:00 ` ✓ CI.xeBAT: " Patchwork 2024-08-13 7:59 ` ✗ CI.xeFULL: failure " Patchwork 2024-08-13 10:16 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox