* [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
@ 2024-08-20 8:12 ` Suraj Kandpal
2024-08-21 14:51 ` B, Jeevan
0 siblings, 1 reply; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-20 8:12 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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] 15+ messages in thread
* RE: [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier
2024-08-20 8:12 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
@ 2024-08-21 14:51 ` B, Jeevan
0 siblings, 0 replies; 15+ messages in thread
From: B, Jeevan @ 2024-08-21 14:51 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org
Cc: Samala, Pranay, Nautiyal, Ankit K
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Tuesday, August 20, 2024 1:42 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; B, Jeevan <jeevan.b@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>
> Subject: [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output
> checks earlier
>
> 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>
LGTM
Reviewed-by: Jeevan B <jeevan.b@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 [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/5] Improve MST HDCP tests
@ 2024-08-22 6:11 Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
` (9 more replies)
0 siblings, 10 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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 (5):
tests/kms_content_protection: Move HDCP output checks earlier
tests/kms_content_protection: Move try commit call
tests/kms_content_protection: Rename igt_commit_style variable
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 | 184 ++++++++++++++++++++++-----------
1 file changed, 123 insertions(+), 61 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
@ 2024-08-22 6:11 ` Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
` (8 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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>
Reviewed-by: Jeevan B <jeevan.b@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] 15+ messages in thread
* [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
@ 2024-08-22 6:11 ` Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
` (7 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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>
Reviewed-by: Jeevan B <jeevan.b@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] 15+ messages in thread
* [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
@ 2024-08-22 6:11 ` Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
` (6 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, Suraj Kandpal
Currently all igt_commit_style variables are declared using a
single variable which is not a good practice use commit_style
naming instead.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_content_protection.c | 65 +++++++++++++++++-----------------
1 file changed, 33 insertions(+), 32 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index db6dc17b1..473686939 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -208,19 +208,19 @@ wait_for_prop_value(igt_output_t *output, uint64_t expected,
}
static void
-commit_display_and_wait_for_flip(enum igt_commit_style s)
+commit_display_and_wait_for_flip(enum igt_commit_style commit_style)
{
int ret;
uint32_t flag;
- if (s == COMMIT_ATOMIC) {
+ if (commit_style == COMMIT_ATOMIC) {
flag = DRM_MODE_PAGE_FLIP_EVENT | DRM_MODE_ATOMIC_ALLOW_MODESET;
igt_display_commit_atomic(&data.display, flag, NULL);
ret = wait_flip_event();
igt_assert_f(!ret, "wait_flip_event failed. %d\n", ret);
} else {
- igt_display_commit2(&data.display, s);
+ igt_display_commit2(&data.display, commit_style);
/* Wait for 50mSec */
usleep(50 * 1000);
@@ -228,7 +228,7 @@ commit_display_and_wait_for_flip(enum igt_commit_style s)
}
static void modeset_with_fb(const enum pipe pipe, igt_output_t *output,
- enum igt_commit_style s)
+ enum igt_commit_style commit_style)
{
igt_display_t *display = &data.display;
drmModeModeInfo *mode;
@@ -240,15 +240,15 @@ static void modeset_with_fb(const enum pipe pipe, igt_output_t *output,
igt_plane_set_fb(primary, &data.red);
igt_fb_set_size(&data.red, primary, mode->hdisplay, mode->vdisplay);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
igt_plane_set_fb(primary, &data.green);
/* Wait for Flip completion before starting the HDCP authentication */
- commit_display_and_wait_for_flip(s);
+ commit_display_and_wait_for_flip(commit_style);
}
-static bool test_cp_enable(igt_output_t *output, enum igt_commit_style s,
+static bool test_cp_enable(igt_output_t *output, enum igt_commit_style commit_style,
int content_type, bool type_change)
{
igt_display_t *display = &data.display;
@@ -266,19 +266,19 @@ static bool test_cp_enable(igt_output_t *output, enum igt_commit_style s,
igt_output_set_prop_value(output,
IGT_CONNECTOR_HDCP_CONTENT_TYPE,
content_type);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
ret = wait_for_prop_value(output, CP_ENABLED,
KERNEL_AUTH_TIME_ALLOWED_MSEC);
if (ret) {
igt_plane_set_fb(primary, &data.green);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
}
return ret;
}
-static void test_cp_disable(igt_output_t *output, enum igt_commit_style s)
+static void test_cp_disable(igt_output_t *output, enum igt_commit_style commit_style)
{
igt_display_t *display = &data.display;
igt_plane_t *primary;
@@ -293,7 +293,7 @@ static void test_cp_disable(igt_output_t *output, enum igt_commit_style s)
igt_output_set_prop_value(output, IGT_CONNECTOR_CONTENT_PROTECTION,
CP_UNDESIRED);
igt_plane_set_fb(primary, &data.red);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
/* Wait for HDCP to be disabled, before crtc off */
ret = wait_for_prop_value(output, CP_UNDESIRED,
@@ -302,8 +302,9 @@ static void test_cp_disable(igt_output_t *output, enum igt_commit_style s)
}
static void test_cp_enable_with_retry(igt_output_t *output,
- enum igt_commit_style s, int retry,
- int content_type, bool expect_failure,
+ enum igt_commit_style commit_style,
+ int retry, int content_type,
+ bool expect_failure,
bool type_change)
{
int retry_orig = retry;
@@ -311,16 +312,16 @@ static void test_cp_enable_with_retry(igt_output_t *output,
do {
if (!type_change || retry_orig != retry)
- test_cp_disable(output, s);
+ test_cp_disable(output, commit_style);
- ret = test_cp_enable(output, s, content_type, type_change);
+ ret = test_cp_enable(output, commit_style, content_type, type_change);
if (!ret && --retry)
igt_debug("Retry (%d/2) ...\n", 3 - retry);
} while (retry && !ret);
if (!ret)
- test_cp_disable(output, s);
+ test_cp_disable(output, commit_style);
if (expect_failure)
igt_assert_f(!ret,
@@ -375,22 +376,22 @@ static bool write_srm_as_fw(const __u8 *srm, int len)
static void test_content_protection_on_output(igt_output_t *output,
enum pipe pipe,
- enum igt_commit_style s,
+ enum igt_commit_style commit_style,
int content_type)
{
igt_display_t *display = &data.display;
bool ret;
- test_cp_enable_with_retry(output, s, 3, content_type, false,
+ test_cp_enable_with_retry(output, commit_style, 3, content_type, false,
false);
if (data.cp_tests & CP_TYPE_CHANGE) {
/* Type 1 -> Type 0 */
- test_cp_enable_with_retry(output, s, 3,
+ test_cp_enable_with_retry(output, commit_style, 3,
HDCP_CONTENT_TYPE_0, false,
true);
/* Type 0 -> Type 1 */
- test_cp_enable_with_retry(output, s, 3,
+ test_cp_enable_with_retry(output, commit_style, 3,
content_type, false,
true);
}
@@ -400,14 +401,14 @@ static void test_content_protection_on_output(igt_output_t *output,
"mei_hdcp unload failed");
/* Expected to fail */
- test_cp_enable_with_retry(output, s, 3,
+ test_cp_enable_with_retry(output, commit_style, 3,
content_type, true, false);
igt_assert_f(!igt_kmod_load("mei_hdcp", NULL),
"mei_hdcp load failed");
/* Expected to pass */
- test_cp_enable_with_retry(output, s, 3,
+ test_cp_enable_with_retry(output, commit_style, 3,
content_type, false, false);
}
@@ -417,16 +418,16 @@ static void test_content_protection_on_output(igt_output_t *output,
if (data.cp_tests & CP_DPMS) {
igt_pipe_set_prop_value(display, pipe,
IGT_CRTC_ACTIVE, 0);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
igt_pipe_set_prop_value(display, pipe,
IGT_CRTC_ACTIVE, 1);
- igt_display_commit2(display, s);
+ igt_display_commit2(display, commit_style);
ret = wait_for_prop_value(output, CP_ENABLED,
KERNEL_AUTH_TIME_ALLOWED_MSEC);
if (!ret)
- test_cp_enable_with_retry(output, s, 2,
+ test_cp_enable_with_retry(output, commit_style, 2,
content_type, false,
false);
}
@@ -534,20 +535,20 @@ static bool output_hdcp_capable(igt_output_t *output, int content_type)
}
static void
-test_fini(igt_output_t *output, enum igt_commit_style s)
+test_fini(igt_output_t *output, enum igt_commit_style commit_style)
{
igt_plane_t *primary;
- test_cp_disable(output, s);
+ test_cp_disable(output, commit_style);
primary = igt_output_get_plane_type(output,
DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, NULL);
igt_output_set_pipe(output, PIPE_NONE);
- igt_display_commit2(&data.display, s);
+ igt_display_commit2(&data.display, commit_style);
}
static void
-test_content_protection(enum igt_commit_style s, int content_type)
+test_content_protection(enum igt_commit_style commit_style, int content_type)
{
igt_display_t *display = &data.display;
igt_output_t *output;
@@ -570,15 +571,15 @@ test_content_protection(enum igt_commit_style s, int content_type)
if (!intel_pipe_output_combo_valid(display))
continue;
- modeset_with_fb(pipe, output, s);
+ modeset_with_fb(pipe, output, commit_style);
if (!output_hdcp_capable(output, content_type))
continue;
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
- test_content_protection_on_output(output, pipe, s, content_type);
+ test_content_protection_on_output(output, pipe, commit_style, content_type);
- test_fini(output, s);
+ test_fini(output, commit_style);
/*
* Testing a output with a pipe is enough for HDCP
* testing. No ROI in testing the connector with other
--
2.43.2
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (2 preceding siblings ...)
2024-08-22 6:11 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
@ 2024-08-22 6:11 ` Suraj Kandpal
2024-08-23 4:32 ` B, Jeevan
2024-08-22 6:11 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
` (5 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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.
--v2
-Fix enum declaration name [Jeevan]
-Add more elaborate debug message [Jeevan]
--v3
-Instead of removing wait time for subsequent CP connector status
check reduce it to 100msec
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/kms_content_protection.c | 83 +++++++++++++++++++++++++++++-----
1 file changed, 72 insertions(+), 11 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 473686939..d6c8344e2 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -124,6 +124,7 @@ struct data {
#define LIC_PERIOD_MSEC (4 * 1000)
/* Kernel retry count=3, Max time per authentication allowed = 6Sec */
#define KERNEL_AUTH_TIME_ALLOWED_MSEC (3 * 6 * 1000)
+#define KERNEL_AUTH_TIME_ADDITIONAL_MSEC 100
#define KERNEL_DISABLE_TIME_ALLOWED_MSEC (1 * 1000)
#define FLIP_EVENT_POLLING_TIMEOUT_MSEC 1000
@@ -278,6 +279,36 @@ static bool test_cp_enable(igt_output_t *output, enum igt_commit_style commit_st
return ret;
}
+static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[],
+ enum igt_commit_style commit_style,
+ 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, commit_style);
+
+ 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 on all MST outputs\n");
+}
+
static void test_cp_disable(igt_output_t *output, enum igt_commit_style commit_style)
{
igt_display_t *display = &data.display;
@@ -631,6 +662,46 @@ 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;
+
+ 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++)
+ ret &= wait_for_prop_value(hdcp_mst_output[count], CP_ENABLED,
+ KERNEL_AUTH_TIME_ADDITIONAL_MSEC);
+
+ 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 outputs\n");
+
+ return ret;
+}
+
static void
test_content_protection_mst(int content_type)
{
@@ -685,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] 15+ messages in thread
* [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (3 preceding siblings ...)
2024-08-22 6:11 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
@ 2024-08-22 6:11 ` Suraj Kandpal
2024-08-22 7:25 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev3) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, Suraj Kandpal
Set fb as red when HDCP is disabled and green when HDCP is enabled
rather than randomly setting the color. This helps to visually
verify HDCP's enablement status rather than having to look at the
logs.
--v2
-Add reason for this change in commit message [Jeevan]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Jeevan B <jeevan.b@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 d6c8344e2..3cb432ded 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -524,12 +524,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);
@@ -538,8 +537,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] 15+ messages in thread
* ✓ CI.xeBAT: success for Improve MST HDCP tests (rev3)
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (4 preceding siblings ...)
2024-08-22 6:11 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
@ 2024-08-22 7:25 ` Patchwork
2024-08-22 7:25 ` ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-08-22 7:25 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2998 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev3)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7983_BAT -> XEIGTPW_11615_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11615_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@xe_intel_bb@blit-simple:
- bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#1705])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/bat-adlp-vf/igt@xe_intel_bb@blit-simple.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/bat-adlp-vf/igt@xe_intel_bb@blit-simple.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][5] -> [SKIP][6] ([Intel XE#1192]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][8] ([Intel XE#1192])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_7983 -> IGTPW_11615
* Linux: xe-1809-e0f8b8a5d8c77e94683451085c62cc54a4d9079d -> xe-1810-4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e
IGTPW_11615: eaa4e9bb9e0d400dc30a4a36ac80bd7e8d20ebf3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7983: b2e17acf37471073210221724a66d164328dee98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1809-e0f8b8a5d8c77e94683451085c62cc54a4d9079d: e0f8b8a5d8c77e94683451085c62cc54a4d9079d
xe-1810-4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e: 4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/index.html
[-- Attachment #2: Type: text/html, Size: 3719 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Fi.CI.BAT: success for Improve MST HDCP tests (rev3)
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (5 preceding siblings ...)
2024-08-22 7:25 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev3) Patchwork
@ 2024-08-22 7:25 ` Patchwork
2024-08-22 10:57 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-08-22 7:25 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6235 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev3)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15275 -> IGTPW_11615
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): fi-cfl-8109u
Missing (2): fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11615:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gem_contexts:
- {bat-arlh-3}: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/bat-arlh-3/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/bat-arlh-3/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in IGTPW_11615 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
* igt@i915_module_load@load:
- fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#180] / [i915#9925])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#180] / [i915#1982] / [i915#9925]) +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#11621] / [i915#180] / [i915#1982] / [i915#9925])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [PASS][11] -> [DMESG-WARN][12] ([i915#11349])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/bat-arls-2/igt@i915_selftest@live@hangcheck.html
- bat-mtlp-8: [PASS][13] -> [DMESG-WARN][14] ([i915#11349])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
- bat-arls-1: [PASS][15] -> [DMESG-WARN][16] ([i915#11349])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/bat-arls-1/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][17] -> [DMESG-WARN][18] ([i915#11621]) +80 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][19] -> [DMESG-WARN][20] ([i915#180])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][21] +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][22] -> [DMESG-WARN][23] ([i915#11621] / [i915#180] / [i915#9925]) +36 other tests dmesg-warn
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7983 -> IGTPW_11615
CI-20190529: 20190529
CI_DRM_15275: 4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11615: eaa4e9bb9e0d400dc30a4a36ac80bd7e8d20ebf3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7983: b2e17acf37471073210221724a66d164328dee98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/index.html
[-- Attachment #2: Type: text/html, Size: 8008 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeFULL: failure for Improve MST HDCP tests (rev3)
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (6 preceding siblings ...)
2024-08-22 7:25 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-08-22 10:57 ` Patchwork
2024-08-23 5:08 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-27 5:21 ` [PATCH i-g-t 0/5] Improve MST HDCP tests B, Jeevan
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-08-22 10:57 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 85204 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev3)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7983_full -> XEIGTPW_11615_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11615_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11615_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_11615_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-unknown-to-4:
- shard-lnl: NOTRUN -> [FAIL][1] +25 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-unknown-to-4.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc@pipe-a-dp-2:
- {shard-bmg}: [FAIL][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-5/igt@kms_async_flips@crc@pipe-a-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-2/igt@kms_async_flips@crc@pipe-a-dp-2.html
* igt@kms_async_flips@crc@pipe-b-dp-2:
- {shard-bmg}: [DMESG-FAIL][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-5/igt@kms_async_flips@crc@pipe-b-dp-2.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-2/igt@kms_async_flips@crc@pipe-b-dp-2.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-unknown-to-4:
- {shard-bmg}: NOTRUN -> [FAIL][6] +63 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-3-unknown-to-4.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- {shard-bmg}: [ABORT][7] -> [FAIL][8] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-8/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
Known issues
------------
Here are the changes found in XEIGTPW_11615_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1465])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_3d.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][11] ([Intel XE#1426]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#1426]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +14 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#1659]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +31 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1477])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1428])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- 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_11615/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_joiner@basic:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#346])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_big_joiner@basic.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1512]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1399]) +49 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][28] ([Intel XE#2576]) +7 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-c-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#314])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#306]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#373]) +23 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#307]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1413]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424]) +14 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#308])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) +16 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#323]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#701])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1138])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) +16 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][43] ([Intel XE#886]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1401] / [Intel XE#1745]) +15 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401]) +16 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#352]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +38 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#651])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#656]) +104 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#658])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1469])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#653]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#605])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2340])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1470])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#417])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1503] / [Intel XE#599]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#599])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1450]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1450] / [Intel XE#599])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#356])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: NOTRUN -> [DMESG-FAIL][65] ([Intel XE#324]) +1 other test dmesg-fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- shard-lnl: NOTRUN -> [DMESG-WARN][66] ([Intel XE#324])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [PASS][67] -> [DMESG-FAIL][68] ([Intel XE#324]) +1 other test dmesg-fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-5/igt@kms_plane@plane-position-hole.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-2:
- shard-lnl: [PASS][69] -> [DMESG-WARN][70] ([Intel XE#324])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#616]) +1 other test fail
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#599]) +22 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#498]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2318]) +38 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1131])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#1430]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][78] ([Intel XE#2029])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1439]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#1489])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1128])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [FAIL][83] ([Intel XE#1649]) +3 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406]) +13 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1127]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1437])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#374] / [Intel XE#599])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#374]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1435]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#330])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-lnl: NOTRUN -> [FAIL][91] ([Intel XE#2443]) +3 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1499] / [Intel XE#599]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#756]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1447]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1126] / [Intel XE#1201])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1062])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@xe_create@create-big-vram.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#1195] / [Intel XE#1473])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#1000])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#688]) +25 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1392]) +20 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@once-userptr-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#288]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-rebind.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: NOTRUN -> [DMESG-FAIL][104] ([Intel XE#1620])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#1192] / [Intel XE#1201])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@xe_live_ktest@xe_migrate.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#560])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1416])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@xe_mmap@vram.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#378])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@xe_module_load@force-load.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#379])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_noexec_ping_pong.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2248])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1201] / [Intel XE#2541])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1420])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#977])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#979])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1061])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1948])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#584]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#2019])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1201] / [Intel XE#579])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#944]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_wedged@basic-wedged:
- shard-lnl: NOTRUN -> [DMESG-WARN][124] ([Intel XE#1760])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: [FAIL][125] ([Intel XE#1659]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- {shard-bmg}: [DMESG-WARN][127] ([Intel XE#877]) -> [PASS][128] +4 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-lnl: [ABORT][129] -> [PASS][130] +2 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-1/igt@kms_cursor_legacy@forked-move@pipe-b.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][131] ([Intel XE#886]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_hdr@invalid-hdr:
- {shard-bmg}: [SKIP][133] ([Intel XE#1503]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_lease@lease-unleased-crtc:
- shard-lnl: [FAIL][135] -> [PASS][136] +14 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_lease@lease-unleased-crtc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_lease@lease-unleased-crtc.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- {shard-bmg}: [INCOMPLETE][137] -> [PASS][138] +1 other test pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-6/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-3/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_pm_rpm@basic-rte:
- shard-lnl: [CRASH][139] -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_pm_rpm@basic-rte.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_pm_rpm@basic-rte.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [FAIL][141] ([Intel XE#899]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-2:
- {shard-bmg}: [FAIL][143] ([Intel XE#899]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-2.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-2.html
* igt@kms_vrr@max-min:
- shard-lnl: [FAIL][145] ([Intel XE#2443]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-6/igt@kms_vrr@max-min.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][147] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@xe_evict@evict-beng-cm-threads-large.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- {shard-bmg}: [TIMEOUT][149] ([Intel XE#1473]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-7/igt@xe_evict@evict-cm-threads-large.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-5/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_fault_mode@many-rebind:
- {shard-bmg}: [ABORT][151] -> [PASS][152] +3 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-6/igt@xe_exec_fault_mode@many-rebind.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-4/igt@xe_exec_fault_mode@many-rebind.html
* igt@xe_exec_threads@threads-hang-userptr-rebind-err:
- shard-lnl: [ABORT][153] ([Intel XE#2583]) -> [PASS][154] +14 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-5/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [SKIP][155] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][156] +1 other test pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_live_ktest@xe_bo.html
* igt@xe_pat@pat-index-xe2@render:
- shard-lnl: [ABORT][157] ([Intel XE#2583] / [Intel XE#2587]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-4/igt@xe_pat@pat-index-xe2@render.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@xe_pat@pat-index-xe2@render.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [DMESG-WARN][159] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][160] +1 other test pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-end:
- {shard-bmg}: [ABORT][161] ([Intel XE#2583]) -> [PASS][162] +11 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-bmg-2/igt@xe_vm@munmap-style-unbind-userptr-inval-end.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-bmg-4/igt@xe_vm@munmap-style-unbind-userptr-inval-end.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][163] ([Intel XE#316]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][166] ([Intel XE#316]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: [FAIL][167] -> [SKIP][168] ([Intel XE#1124]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1124]) -> [SKIP][170] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][172] ([Intel XE#1124]) +9 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][174] ([Intel XE#607])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: [FAIL][175] -> [SKIP][176] ([Intel XE#1477])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][177] ([Intel XE#2191]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-lnl: [FAIL][179] -> [SKIP][180] ([Intel XE#1512])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][181] ([Intel XE#367]) -> [SKIP][182] ([Intel XE#1201] / [Intel XE#367])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][184] ([Intel XE#367]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
- shard-lnl: [FAIL][185] -> [SKIP][186] ([Intel XE#367])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][188] ([Intel XE#787]) +48 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][189] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-lnl: [FAIL][191] -> [SKIP][192] ([Intel XE#1399])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [SKIP][193] ([Intel XE#787]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][196] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][197] ([Intel XE#306]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#306])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][199] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][200] ([Intel XE#306]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: [SKIP][201] ([Intel XE#373]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-lnl: [FAIL][203] -> [SKIP][204] ([Intel XE#373])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][206] ([Intel XE#373]) +6 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: [FAIL][207] -> [SKIP][208] ([Intel XE#1424])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_cursor_crc@cursor-random-128x42.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: [FAIL][209] -> [SKIP][210] ([Intel XE#309])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][212] ([Intel XE#323])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][213] ([Intel XE#455]) -> [SKIP][214] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][216] ([Intel XE#776])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#701]) -> [SKIP][218] ([Intel XE#701])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: [FAIL][219] -> [SKIP][220] ([Intel XE#703])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_feature_discovery@display-3x.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][222] ([Intel XE#1135])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@kms_feature_discovery@psr2.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-lnl: [FAIL][223] -> [SKIP][224] ([Intel XE#1421])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_flip@2x-flip-vs-modeset.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: [FAIL][225] -> [SKIP][226] ([Intel XE#1401] / [Intel XE#1745])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][228] ([Intel XE#455]) +9 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [i915#5274]) -> [SKIP][230] ([i915#5274])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@kms_force_connector_basic@prune-stale-modes.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: [FAIL][231] -> [SKIP][232] ([Intel XE#651]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: [FAIL][233] -> [SKIP][234] ([Intel XE#656]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][235] ([Intel XE#651]) -> [SKIP][236] ([Intel XE#1201] / [Intel XE#651]) +16 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: [ABORT][237] ([Intel XE#2583]) -> [SKIP][238] ([Intel XE#656])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][239] ([Intel XE#658]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#658])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render:
- shard-lnl: [FAIL][241] ([Intel XE#2591]) -> [SKIP][242] ([Intel XE#656])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][244] ([Intel XE#651]) +24 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][246] ([Intel XE#653]) +21 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][247] ([Intel XE#1158]) -> [SKIP][248] ([Intel XE#1158] / [Intel XE#1201])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][249] ([Intel XE#653]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#653]) +18 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@static-toggle:
- shard-lnl: [FAIL][251] -> [SKIP][252] ([Intel XE#1503] / [Intel XE#599])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_hdr@static-toggle.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-7/igt@kms_hdr@static-toggle.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: [ABORT][253] -> [SKIP][254] ([Intel XE#599])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-1/igt@kms_plane_lowres@tiling-y.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-lnl: [FAIL][255] -> [SKIP][256] ([Intel XE#498])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][257] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][258] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][260] ([Intel XE#2318]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-lnl: [FAIL][261] -> [SKIP][262] ([Intel XE#2318])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][264] ([Intel XE#870])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1129] / [Intel XE#1201]) -> [SKIP][266] ([Intel XE#1129])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][268] ([Intel XE#1489]) +2 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-435/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1489]) -> [SKIP][270] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: [SKIP][271] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][272] ([Intel XE#1122])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][273] ([Intel XE#929]) -> [SKIP][274] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][275] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][276] ([Intel XE#929]) +14 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-suspend:
- shard-lnl: [ABORT][277] ([Intel XE#2583]) -> [SKIP][278] ([Intel XE#1406])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-2/igt@kms_psr@pr-suspend.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-4/igt@kms_psr@pr-suspend.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][280] ([Intel XE#327]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@kms_rotation_crc@bad-pixel-format.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][281] ([Intel XE#327]) -> [SKIP][282] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][283] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][284] ([Intel XE#1127])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: [FAIL][285] -> [SKIP][286] ([Intel XE#1437])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][287] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][288] ([Intel XE#756])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1091]) -> [SKIP][290] ([Intel XE#1091] / [Intel XE#1201])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][291] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][292] ([Intel XE#1126])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][293] ([Intel XE#1126]) -> [SKIP][294] ([Intel XE#1126] / [Intel XE#1201])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: [SKIP][295] ([Intel XE#944]) -> [SKIP][296] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_create@multigpu-create-massive-size.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-433/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][297] ([Intel XE#1473] / [Intel XE#402]) -> [INCOMPLETE][298] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#402])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [INCOMPLETE][299] ([Intel XE#1195] / [Intel XE#1473]) -> [TIMEOUT][300] ([Intel XE#1473])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@xe_evict@evict-threads-large.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-userptr:
- shard-dg2-set2: [SKIP][301] ([Intel XE#288]) -> [SKIP][302] ([Intel XE#1201] / [Intel XE#288]) +15 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_exec_fault_mode@many-userptr.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][304] ([Intel XE#288]) +23 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@xe_exec_fault_mode@twice-invalid-fault.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][305] ([Intel XE#2360]) -> [SKIP][306] ([Intel XE#1201] / [Intel XE#2360])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_live_ktest@xe_mocs:
- shard-dg2-set2: [FAIL][307] ([Intel XE#1999]) -> [SKIP][308] ([Intel XE#1192] / [Intel XE#1201])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_live_ktest@xe_mocs.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][309] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][310] ([Intel XE#560])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@xe_media_fill@media-fill.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][311] ([Intel XE#512]) -> [SKIP][312] ([Intel XE#1201] / [Intel XE#512])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_mmap@small-bar.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-463/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: [SKIP][313] ([Intel XE#378]) -> [SKIP][314] ([Intel XE#1201] / [Intel XE#378])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_module_load@force-load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-435/igt@xe_module_load@force-load.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: [SKIP][315] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][316] ([Intel XE#2541]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2541]) -> [SKIP][318] ([Intel XE#1201] / [Intel XE#2541]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_oa@privileged-forked-access-vaddr.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][319] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][320] ([Intel XE#979])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][321] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][322] ([Intel XE#944]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-432/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-FAIL][323] ([Intel XE#1760]) -> [DMESG-WARN][324] ([Intel XE#1760])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7983/shard-dg2-432/igt@xe_wedged@wedged-at-any-timeout.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2576
[Intel XE#2583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2583
[Intel XE#2587]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2587
[Intel XE#2591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2591
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[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#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_7983 -> IGTPW_11615
* Linux: xe-1809-e0f8b8a5d8c77e94683451085c62cc54a4d9079d -> xe-1810-4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e
IGTPW_11615: eaa4e9bb9e0d400dc30a4a36ac80bd7e8d20ebf3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7983: b2e17acf37471073210221724a66d164328dee98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1809-e0f8b8a5d8c77e94683451085c62cc54a4d9079d: e0f8b8a5d8c77e94683451085c62cc54a4d9079d
xe-1810-4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e: 4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11615/index.html
[-- Attachment #2: Type: text/html, Size: 103903 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase
2024-08-22 6:11 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
@ 2024-08-23 4:32 ` B, Jeevan
0 siblings, 0 replies; 15+ messages in thread
From: B, Jeevan @ 2024-08-23 4:32 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org
Cc: Samala, Pranay, Nautiyal, Ankit K
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Thursday, August 22, 2024 11:42 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; B, Jeevan <jeevan.b@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>
> Subject: [PATCH i-g-t 4/5] 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.
>
> --v2
> -Fix enum declaration name [Jeevan]
> -Add more elaborate debug message [Jeevan]
>
> --v3
> -Instead of removing wait time for subsequent CP connector status check reduce
> it to 100msec
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
please check the patchwork results its failing with and without patch.
Leaving the result apart code wise it LGTM.
Reviewed-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/kms_content_protection.c | 83 +++++++++++++++++++++++++++++-----
> 1 file changed, 72 insertions(+), 11 deletions(-)
>
> diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
> index 473686939..d6c8344e2 100644
> --- a/tests/kms_content_protection.c
> +++ b/tests/kms_content_protection.c
> @@ -124,6 +124,7 @@ struct data {
> #define LIC_PERIOD_MSEC (4 * 1000)
> /* Kernel retry count=3, Max time per authentication allowed = 6Sec */
> #define KERNEL_AUTH_TIME_ALLOWED_MSEC (3 * 6 * 1000)
> +#define KERNEL_AUTH_TIME_ADDITIONAL_MSEC 100
> #define KERNEL_DISABLE_TIME_ALLOWED_MSEC (1 * 1000)
> #define FLIP_EVENT_POLLING_TIMEOUT_MSEC 1000
>
> @@ -278,6 +279,36 @@ static bool test_cp_enable(igt_output_t *output,
> enum igt_commit_style commit_st
> return ret;
> }
>
> +static void test_mst_cp_disable(igt_output_t *hdcp_mst_output[],
> + enum igt_commit_style commit_style,
> + 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, commit_style);
> +
> + 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 on all MST
> +outputs\n"); }
> +
> static void test_cp_disable(igt_output_t *output, enum igt_commit_style
> commit_style) {
> igt_display_t *display = &data.display; @@ -631,6 +662,46 @@ 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;
> +
> + 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++)
> + ret &= wait_for_prop_value(hdcp_mst_output[count],
> CP_ENABLED,
> +
> KERNEL_AUTH_TIME_ADDITIONAL_MSEC);
> +
> + 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 outputs\n");
> +
> + return ret;
> +}
> +
> static void
> test_content_protection_mst(int content_type) { @@ -685,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] 15+ messages in thread
* ✗ Fi.CI.IGT: failure for Improve MST HDCP tests (rev3)
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (7 preceding siblings ...)
2024-08-22 10:57 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-23 5:08 ` Patchwork
2024-08-27 5:21 ` [PATCH i-g-t 0/5] Improve MST HDCP tests B, Jeevan
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2024-08-23 5:08 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77704 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev3)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15275_full -> IGTPW_11615_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11615_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11615_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_11615/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_11615_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@gem_eio@reset-stress.html
Known issues
------------
Here are the changes found in IGTPW_11615_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#9318])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-5/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][11] ([i915#1099])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb4/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8555]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][14] ([i915#7975] / [i915#8213])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4812])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-6/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#4525])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#6334]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][18] ([i915#11965]) +3 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][19] -> [FAIL][20] ([i915#2846])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-7/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][22] ([i915#2842]) +2 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-6/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#5107])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +10 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-6/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4565])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-glk: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#284])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4077]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4083]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-5/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4083]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3282]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4270])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4270]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-7/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#5190] / [i915#8428]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4879])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4880])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3297]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#2527]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#2856]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#2527]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#6412])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#6412])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#6590])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: NOTRUN -> [WARN][66] ([i915#2681]) +3 other tests warn
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#11681])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4387])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#7984])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#6188])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][71] ([i915#9311])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4212]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4212])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#8709]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#8709]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#5286]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#5286])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4538] / [i915#5286]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#5286])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3638]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3638]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][82] +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4538] / [i915#5190]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4538]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#10656])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#6095]) +95 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#6095]) +19 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#6095]) +71 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#10307] / [i915#6095]) +162 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6095]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#7828]) +6 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#7828]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#7828]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#7828])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#7828])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#7118] / [i915#9424])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#6944] / [i915#9424])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_content_protection@content-type-change.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#9424])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#3299])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3299])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#9424]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#7118] / [i915#9424])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3555]) +6 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#11453])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#11453] / [i915#3359])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#11453])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#3555]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#11453]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][111] +19 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5354]) +23 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#9067])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#4103] / [i915#4213])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#4103])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4103] / [i915#4213])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#4103])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#9833])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3555]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3840])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#3840])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#3840]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#1839])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#658])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][125] +15 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3637]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#3637]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#9934]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][129] -> [FAIL][130] ([i915#2122])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [PASS][131] -> [INCOMPLETE][132] ([i915#4839])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb5/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#2672]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#2587] / [i915#2672]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/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-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#2672])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#2587] / [i915#2672])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#2672] / [i915#3555])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8708])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#1825]) +5 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][140] +35 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#8708]) +14 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8708]) +16 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3458]) +16 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3023]) +19 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10055])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][146] +28 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#3458]) +12 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#1825]) +30 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8228]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8228]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][151] ([i915#10647]) +3 other tests fail
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8821])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9423]) +27 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9423]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#5176] / [i915#9423]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#9423]) +7 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/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-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#5235]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#9728]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#9728]) +15 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_backlight@fade:
- shard-snb: NOTRUN -> [SKIP][161] +30 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb4/igt@kms_pm_backlight@fade.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#9812])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_pm_backlight@fade.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#5354])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#9293])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#9519])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][166] -> [SKIP][167] ([i915#9519])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#9519])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#9519])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][170] -> [SKIP][171] ([i915#9519])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#6524] / [i915#6805]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#6524])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@kms_prime@d3hot.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#6524])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9808]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-7/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#11520]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#11520]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-3/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#11520]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#11520])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9683])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#9683])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#9683]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#1072] / [i915#9732]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
* igt@kms_psr@pr-basic:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#9732]) +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-10/igt@kms_psr@pr-basic.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9688])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-5/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#1072] / [i915#9732]) +12 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#1072] / [i915#9732]) +15 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][189] +297 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#9685]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9685])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#5289])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#5289])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][194] ([i915#5465]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [PASS][195] -> [FAIL][196] ([i915#9196])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][197] -> [FAIL][198] ([i915#9196])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#9906])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9906]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2437] / [i915#9412])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2437])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#2437])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#2437])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-17/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][205] ([i915#2437])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#2435])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg2: NOTRUN -> [FAIL][207] ([i915#4349]) +4 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@perf_pmu@busy-idle@vcs0.html
* igt@perf_pmu@busy-idle@vcs1:
- shard-mtlp: [PASS][208] -> [FAIL][209] ([i915#4349]) +4 other tests fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-1/igt@perf_pmu@busy-idle@vcs1.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-3/igt@perf_pmu@busy-idle@vcs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8850])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-16/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][211] ([i915#6806])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@perf_pmu@frequency@gt0.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3708] / [i915#4077])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3708] / [i915#4077])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3708])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3708])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9917])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9917])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9917])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9917])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][220] ([i915#9781])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-5/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][221] ([i915#7742]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][223] ([i915#9846]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][225] ([i915#12027]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
- shard-glk: [FAIL][227] ([i915#12027]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-glk8/igt@gem_ctx_engines@invalid-engines.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][229] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-10/igt@gem_eio@hibernate.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-8/igt@gem_eio@hibernate.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][231] ([i915#2842]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][233] ([i915#2842]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_softpin@allocator-evict@bcs0:
- shard-dg1: [INCOMPLETE][235] ([i915#10652]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-17/igt@gem_softpin@allocator-evict@bcs0.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-18/igt@gem_softpin@allocator-evict@bcs0.html
* igt@gem_softpin@allocator-evict@ccs0:
- shard-mtlp: [INCOMPLETE][237] ([i915#10652]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-3/igt@gem_softpin@allocator-evict@ccs0.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-7/igt@gem_softpin@allocator-evict@ccs0.html
* igt@gem_softpin@allocator-evict@vcs0:
- shard-dg2: [INCOMPLETE][239] ([i915#10652]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-8/igt@gem_softpin@allocator-evict@vcs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@gem_softpin@allocator-evict@vcs0.html
* igt@i915_selftest@live@hugepages:
- shard-dg1: [INCOMPLETE][241] -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-18/igt@i915_selftest@live@hugepages.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@i915_selftest@live@hugepages.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [ABORT][243] ([i915#11703]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs:
- shard-glk: [FAIL][245] ([i915#11859]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-glk6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][247] ([i915#11808] / [i915#5956]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][249] ([i915#11808]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1:
- shard-snb: [FAIL][251] ([i915#2122]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb2/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-snb: [SKIP][253] -> [PASS][254] +2 other tests pass
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][255] ([i915#6880]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-mtlp: [DMESG-WARN][257] -> [PASS][258] +2 other tests pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-6/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-2/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-x@pipe-d-edp-1:
- shard-mtlp: [ABORT][259] -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-6/igt@kms_plane_multiple@tiling-x@pipe-d-edp-1.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-2/igt@kms_plane_multiple@tiling-x@pipe-d-edp-1.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][261] ([i915#9295]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][263] ([i915#9519]) -> [PASS][264] +3 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [SKIP][265] ([i915#9519]) -> [PASS][266] +1 other test pass
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][267] ([i915#9196]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@perf@invalid-oa-format-id:
- shard-dg1: [DMESG-WARN][269] ([i915#4423]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-18/igt@perf@invalid-oa-format-id.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@perf@invalid-oa-format-id.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-dg2: [FAIL][271] ([i915#4349]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-4/igt@perf_pmu@busy-double-start@ccs0.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vcs0:
- shard-dg1: [FAIL][273] ([i915#4349]) -> [PASS][274] +1 other test pass
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs0.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][275] ([i915#4349]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@ccs0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html
#### Warnings ####
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][277] ([i915#2876]) -> [FAIL][278] ([i915#2842])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: [SKIP][279] ([i915#4423] / [i915#4565]) -> [SKIP][280] ([i915#4565])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][281] ([i915#9424]) -> [SKIP][282] ([i915#9433])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: [SKIP][283] ([i915#11453] / [i915#3359]) -> [SKIP][284] ([i915#11453]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][285] ([i915#3458]) -> [SKIP][286] ([i915#10433] / [i915#3458]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2: [SKIP][287] ([i915#1072] / [i915#9732]) -> [SKIP][288] ([i915#1072] / [i915#9673] / [i915#9732]) +8 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-2/igt@kms_psr@fbc-pr-suspend.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: [SKIP][289] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][290] ([i915#1072] / [i915#9732]) +16 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-10/igt@kms_psr@psr-cursor-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: [SKIP][291] ([i915#11131] / [i915#4235]) -> [SKIP][292] ([i915#11131])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15275/shard-dg2-11/igt@kms_rotation_crc@bad-pixel-format.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/shard-dg2-2/igt@kms_rotation_crc@bad-pixel-format.html
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10652
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[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#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[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#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[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#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#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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[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#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293
[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#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#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7983 -> IGTPW_11615
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15275: 4c294bd7d8c84305dbb1de1aa9e010818e3f4b7e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11615: eaa4e9bb9e0d400dc30a4a36ac80bd7e8d20ebf3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7983: b2e17acf37471073210221724a66d164328dee98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11615/index.html
[-- Attachment #2: Type: text/html, Size: 96069 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* RE: [PATCH i-g-t 0/5] Improve MST HDCP tests
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (8 preceding siblings ...)
2024-08-23 5:08 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-08-27 5:21 ` B, Jeevan
9 siblings, 0 replies; 15+ messages in thread
From: B, Jeevan @ 2024-08-27 5:21 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org
Cc: Samala, Pranay, Nautiyal, Ankit K
Can you please re-report the issue or fix the results so that we can merge this.
BR- Jeevan B
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Thursday, August 22, 2024 11:42 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; B, Jeevan <jeevan.b@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>
> Subject: [PATCH i-g-t 0/5] Improve MST HDCP tests
>
> 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 (5):
> tests/kms_content_protection: Move HDCP output checks earlier
> tests/kms_content_protection: Move try commit call
> tests/kms_content_protection: Rename igt_commit_style variable
> 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 | 184 ++++++++++++++++++++++-----------
> 1 file changed, 123 insertions(+), 61 deletions(-)
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier
2024-08-27 6:18 Suraj Kandpal
@ 2024-08-27 6:19 ` Suraj Kandpal
0 siblings, 0 replies; 15+ messages in thread
From: Suraj Kandpal @ 2024-08-27 6:19 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, 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>
Reviewed-by: Jeevan B <jeevan.b@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] 15+ messages in thread
end of thread, other threads:[~2024-08-27 6:21 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
2024-08-22 6:11 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
2024-08-23 4:32 ` B, Jeevan
2024-08-22 6:11 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
2024-08-22 7:25 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev3) Patchwork
2024-08-22 7:25 ` ✓ Fi.CI.BAT: " Patchwork
2024-08-22 10:57 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-23 5:08 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-27 5:21 ` [PATCH i-g-t 0/5] Improve MST HDCP tests B, Jeevan
-- strict thread matches above, loose matches on Subject: below --
2024-08-27 6:18 Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
2024-08-20 8:12 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
2024-08-21 14:51 ` B, Jeevan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox