* [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; 14+ 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] 14+ 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; 14+ 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] 14+ 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
0 siblings, 0 replies; 14+ 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] 14+ messages in thread
* [PATCH i-g-t 0/5] Improve MST HDCP tests
@ 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
` (9 more replies)
0 siblings, 10 replies; 14+ messages in thread
From: Suraj Kandpal @ 2024-08-27 6:18 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] 14+ messages in thread
* [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
@ 2024-08-27 6:19 ` Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
` (8 subsequent siblings)
9 siblings, 0 replies; 14+ 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] 14+ messages in thread
* [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests 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-27 6:19 ` Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
` (7 subsequent siblings)
9 siblings, 0 replies; 14+ 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
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] 14+ messages in thread
* [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests 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-27 6:19 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
@ 2024-08-27 6:19 ` Suraj Kandpal
2024-08-27 6:19 ` [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; 14+ 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
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] 14+ messages in thread
* [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (2 preceding siblings ...)
2024-08-27 6:19 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
@ 2024-08-27 6:19 ` Suraj Kandpal
2024-08-27 6:19 ` [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, 0 replies; 14+ 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
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>
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 related [flat|nested] 14+ messages in thread
* [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (3 preceding siblings ...)
2024-08-27 6:19 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
@ 2024-08-27 6:19 ` Suraj Kandpal
2024-08-27 10:44 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev4) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 14+ 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
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]
--v3
-Use correct variable to prepare modeset
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..2d9f3eebe 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[i], 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] 14+ messages in thread
* ✓ CI.xeBAT: success for Improve MST HDCP tests (rev4)
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (4 preceding siblings ...)
2024-08-27 6:19 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
@ 2024-08-27 10:44 ` Patchwork
2024-08-27 10:56 ` ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-08-27 10:44 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2302 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev4)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7993_BAT -> XEIGTPW_11643_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11643_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][1] ([Intel XE#324]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#324]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/bat-adlp-7/igt@kms_hdmi_inject@inject-audio.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/bat-adlp-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-adlp-7: [DMESG-WARN][5] -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/bat-adlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
Build changes
-------------
* IGT: IGT_7993 -> IGTPW_11643
* Linux: xe-1832-0f7dbe16a23882ef9c928d9650ea0613925e710b -> xe-1834-5141d5ae1dead73bd1d029f8310609720bca06b3
IGTPW_11643: 11643
IGT_7993: 3b6b2d238e864ff1af9e33159d3bbf4b7f01d86d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1832-0f7dbe16a23882ef9c928d9650ea0613925e710b: 0f7dbe16a23882ef9c928d9650ea0613925e710b
xe-1834-5141d5ae1dead73bd1d029f8310609720bca06b3: 5141d5ae1dead73bd1d029f8310609720bca06b3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/index.html
[-- Attachment #2: Type: text/html, Size: 3020 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.BAT: success for Improve MST HDCP tests (rev4)
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (5 preceding siblings ...)
2024-08-27 10:44 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev4) Patchwork
@ 2024-08-27 10:56 ` Patchwork
2024-08-27 17:50 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-08-27 10:56 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9700 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev4)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15299 -> IGTPW_11643
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/index.html
Participating hosts (38 -> 35)
------------------------------
Additional (2): fi-cfl-8109u bat-arls-2
Missing (5): fi-bsw-n3050 fi-snb-2520m fi-glk-j4005 fi-elk-e7500 bat-mtlp-6
Known issues
------------
Here are the changes found in IGTPW_11643 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-arls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
- bat-arls-2: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-arls-2: NOTRUN -> [SKIP][5] ([i915#11343] / [i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-arls-2: NOTRUN -> [SKIP][6] ([i915#10196] / [i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arls-2: NOTRUN -> [SKIP][7] ([i915#10197] / [i915#10211] / [i915#4079])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arls-2: NOTRUN -> [SKIP][8] ([i915#10206] / [i915#4079])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-apl-1: [PASS][9] -> [DMESG-WARN][10] ([i915#180])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/bat-apl-1/igt@i915_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-apl-1/igt@i915_module_load@load.html
* igt@i915_pm_rps@basic-api:
- bat-arls-2: NOTRUN -> [SKIP][11] ([i915#10209])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@requests:
- bat-apl-1: [PASS][12] -> [DMESG-WARN][13] ([i915#11621]) +78 other tests dmesg-warn
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/bat-apl-1/igt@i915_selftest@live@requests.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-apl-1/igt@i915_selftest@live@requests.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arls-2: NOTRUN -> [SKIP][14] ([i915#10200]) +9 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_busy@basic@flip:
- bat-apl-1: [PASS][15] -> [DMESG-WARN][16] ([i915#180] / [i915#1982]) +2 other tests dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/bat-apl-1/igt@kms_busy@basic@flip.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-arls-2: NOTRUN -> [SKIP][17] ([i915#10202] / [i915#11346]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-arls-2: NOTRUN -> [SKIP][18] ([i915#11346] / [i915#9886])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset@b-dp1:
- bat-apl-1: [PASS][19] -> [DMESG-WARN][20] ([i915#11621] / [i915#180]) +32 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- bat-apl-1: [PASS][21] -> [DMESG-WARN][22] ([i915#11621] / [i915#180] / [i915#1982]) +1 other test dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-arls-2: NOTRUN -> [SKIP][23] ([i915#10207] / [i915#11346])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][24] +11 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-arls-2: NOTRUN -> [SKIP][25] ([i915#10196] / [i915#4077] / [i915#9688])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arls-2: NOTRUN -> [SKIP][26] ([i915#10208] / [i915#8809])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-arls-2: NOTRUN -> [SKIP][27] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-arls-2: NOTRUN -> [SKIP][28] ([i915#10212] / [i915#3708])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arls-2: NOTRUN -> [SKIP][29] ([i915#10214] / [i915#3708])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arls-2: NOTRUN -> [SKIP][30] ([i915#10216] / [i915#3708])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/bat-arls-2/igt@prime_vgem@basic-write.html
[i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[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#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7993 -> IGTPW_11643
CI-20190529: 20190529
CI_DRM_15299: 5141d5ae1dead73bd1d029f8310609720bca06b3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11643: 11643
IGT_7993: 3b6b2d238e864ff1af9e33159d3bbf4b7f01d86d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/index.html
[-- Attachment #2: Type: text/html, Size: 12059 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ CI.xeFULL: failure for Improve MST HDCP tests (rev4)
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (6 preceding siblings ...)
2024-08-27 10:56 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-08-27 17:50 ` Patchwork
2024-08-28 6:37 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-30 5:44 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-08-27 17:50 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 62122 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev4)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7993_full -> XEIGTPW_11643_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11643_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11643_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_11643_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_psr@fbc-psr-suspend:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-6/igt@kms_psr@fbc-psr-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_psr@fbc-psr-suspend.html
* igt@xe_mmap@system:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@xe_mmap@system.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@xe_mmap@system.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- {shard-bmg}: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- {shard-bmg}: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- {shard-bmg}: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html
Known issues
------------
Here are the changes found in XEIGTPW_11643_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#1659]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124] / [Intel XE#1201]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1399]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +13 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1424])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#323])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][25] ([Intel XE#877]) +1 other test dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [i915#3804])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#455]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#776])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#701])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#886]) +2 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#651])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#651]) +8 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#653]) +9 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#653])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2340])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-8/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#324]) +3 other tests dmesg-warn
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-1/igt@kms_plane@plane-position-covered.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-5/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#2318]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#1430])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#1489])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#2497])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-6/igt@kms_psr@fbc-psr-suspend@edp-1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@kms_psr@psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_psr@psr2-primary-render.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][47] -> [FAIL][48] ([Intel XE#771] / [Intel XE#899])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#899])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#2443]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-4/igt@kms_vrr@flipline.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-6/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#756])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute@ccs-mode-basic:
- shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1050])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@xe_compute@ccs-mode-basic.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#944]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_drm_fdinfo@drm-most-busy-idle-check-all:
- shard-dg2-set2: [PASS][56] -> [FAIL][57] ([Intel XE#2623])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@xe_drm_fdinfo@drm-most-busy-idle-check-all.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@xe_drm_fdinfo@drm-most-busy-idle-check-all.html
* igt@xe_evict@evict-beng-small-cm:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#688])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [PASS][59] -> [FAIL][60] ([Intel XE#1600])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][61] -> [FAIL][62] ([Intel XE#1000])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@xe_evict@evict-threads-large.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1392])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#288]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#2360])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_live_ktest@xe_mocs:
- shard-lnl: [PASS][66] -> [SKIP][67] ([Intel XE#1192])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-6/igt@xe_live_ktest@xe_mocs.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][68] ([Intel XE#2249])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-8/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#2514]) +1 other test fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#1358])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-8/igt@xe_pm@s2idle-exec-after.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-5/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#1195] / [Intel XE#1358])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-463/igt@xe_pm@s4-basic-exec.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#958])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#944])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1130] / [Intel XE#1201])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][80] ([Intel XE#1426]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][82] ([Intel XE#1426]) -> [PASS][83] +3 other tests pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- {shard-bmg}: [FAIL][84] -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3:
- {shard-bmg}: [FAIL][86] ([Intel XE#2436]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-b-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [INCOMPLETE][88] ([Intel XE#1195]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3:
- {shard-bmg}: [INCOMPLETE][90] -> [PASS][91] +2 other tests pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][92] ([Intel XE#886]) -> [PASS][93] +1 other test pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- {shard-bmg}: [INCOMPLETE][94] ([Intel XE#2597]) -> [PASS][95] +2 other tests pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][96] ([Intel XE#324]) -> [PASS][97] +2 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@kms_plane@plane-position-hole.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-3/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-2:
- shard-lnl: [DMESG-WARN][98] ([Intel XE#324]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][100] ([Intel XE#718]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: [FAIL][102] ([Intel XE#1649]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-7/igt@kms_psr@fbc-psr2-dpms.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-1/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_vrr@max-min:
- shard-lnl: [FAIL][104] ([Intel XE#2443]) -> [PASS][105] +1 other test pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-1/igt@kms_vrr@max-min.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-2/igt@kms_vrr@max-min.html
* igt@xe_drm_fdinfo@drm-busy-exec-queue-destroy-idle:
- shard-lnl: [FAIL][106] -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-3/igt@xe_drm_fdinfo@drm-busy-exec-queue-destroy-idle.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-7/igt@xe_drm_fdinfo@drm-busy-exec-queue-destroy-idle.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][108] ([Intel XE#1473]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][110] ([Intel XE#2105]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_threads@threads-bal-mixed-fd-basic:
- {shard-bmg}: [DMESG-WARN][112] ([Intel XE#877]) -> [PASS][113] +7 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-bmg-1/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-bmg-7/igt@xe_exec_threads@threads-bal-mixed-fd-basic.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][114] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@xe_pm@s4-basic.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-6/igt@xe_pm@s4-basic.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][116] ([Intel XE#623]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#623])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][118] ([Intel XE#316]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][121] ([Intel XE#316]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-90.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][122] ([Intel XE#1201] / [Intel XE#607]) -> [SKIP][123] ([Intel XE#607])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][124] ([Intel XE#610]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#610])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][126] ([Intel XE#1124]) -> [SKIP][127] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: [SKIP][128] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][129] ([Intel XE#1124]) +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][130] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][131] ([Intel XE#346])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_big_joiner@invalid-modeset.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][132] ([Intel XE#367]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][135] ([Intel XE#2191])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][136] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][137] ([Intel XE#367]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][138] ([Intel XE#787]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1252]) -> [SKIP][141] ([Intel XE#1201] / [Intel XE#1252]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][142] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][143] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/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-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][145] ([Intel XE#787]) +55 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][147] ([Intel XE#1252])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-dg2-set2: [SKIP][148] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1152] / [Intel XE#1201]) -> [SKIP][151] ([Intel XE#1152]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][152] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][153] ([Intel XE#306]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][154] ([Intel XE#306]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][156] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][157] ([Intel XE#373]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][158] ([Intel XE#373]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][160] ([Intel XE#308]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][162] ([Intel XE#323]) -> [SKIP][163] ([Intel XE#1201] / [Intel XE#323])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][164] ([Intel XE#307]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#307])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_display_modes@mst-extended-mode-negative.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][167] ([Intel XE#455]) +14 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-463/igt@kms_dsc@dsc-with-bpc.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][168] ([Intel XE#703]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#703])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][170] ([Intel XE#1137] / [Intel XE#1201]) -> [SKIP][171] ([Intel XE#1137])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][172] ([Intel XE#651]) -> [SKIP][173] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][175] ([Intel XE#651]) +25 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][176] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][177] ([Intel XE#658])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][179] ([Intel XE#1158])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][181] ([Intel XE#653]) +22 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][182] ([Intel XE#653]) -> [SKIP][183] ([Intel XE#1201] / [Intel XE#653]) +18 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][184] ([Intel XE#455]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][187] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][189] ([Intel XE#498]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][191] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][193] ([Intel XE#2318]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][194] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][195] ([Intel XE#870]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][196] ([Intel XE#870]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#870])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_pm_backlight@fade-with-dpms.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][199] ([Intel XE#1489]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-463/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][200] ([Intel XE#1489]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1122]) -> [SKIP][203] ([Intel XE#1122] / [Intel XE#1201]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][205] ([Intel XE#929]) +14 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-plane-move.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][206] ([Intel XE#929]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1149]) -> [SKIP][209] ([Intel XE#1149] / [Intel XE#1201]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][211] ([Intel XE#327]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1127]) -> [SKIP][213] ([Intel XE#1127] / [Intel XE#1201])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][214] ([Intel XE#327]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#327])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][216] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][217] ([Intel XE#1500])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][218] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][220] ([Intel XE#1123]) -> [SKIP][221] ([Intel XE#1123] / [Intel XE#1201])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][222] ([Intel XE#288]) -> [SKIP][223] ([Intel XE#1201] / [Intel XE#288]) +20 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][224] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][225] ([Intel XE#288]) +21 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][226] ([Intel XE#2360]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#2360])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][229] ([Intel XE#2360])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: [SKIP][230] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][231] ([Intel XE#2541]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-466/igt@xe_oa@create-destroy-userspace-config.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: [SKIP][232] ([Intel XE#2541]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#2541]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_oa@mi-rpc.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@xe_oa@mi-rpc.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1337]) -> [SKIP][235] ([Intel XE#1201] / [Intel XE#1337])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][237] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][238] ([Intel XE#944]) -> [SKIP][239] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-432/igt@xe_query@multigpu-query-config.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-434/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][241] ([Intel XE#944]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-lnl: [DMESG-WARN][242] ([Intel XE#1760]) -> [DMESG-FAIL][243] ([Intel XE#1760])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7993/shard-lnl-2/igt@xe_wedged@wedged-at-any-timeout.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/shard-lnl-5/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#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[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#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
[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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2497
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2623
[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#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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[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#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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_7993 -> IGTPW_11643
* Linux: xe-1832-0f7dbe16a23882ef9c928d9650ea0613925e710b -> xe-1834-5141d5ae1dead73bd1d029f8310609720bca06b3
IGTPW_11643: 11643
IGT_7993: 3b6b2d238e864ff1af9e33159d3bbf4b7f01d86d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1832-0f7dbe16a23882ef9c928d9650ea0613925e710b: 0f7dbe16a23882ef9c928d9650ea0613925e710b
xe-1834-5141d5ae1dead73bd1d029f8310609720bca06b3: 5141d5ae1dead73bd1d029f8310609720bca06b3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11643/index.html
[-- Attachment #2: Type: text/html, Size: 78903 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.IGT: failure for Improve MST HDCP tests (rev4)
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (7 preceding siblings ...)
2024-08-27 17:50 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-28 6:37 ` Patchwork
2024-08-30 5:44 ` ✓ Fi.CI.IGT: success " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-08-28 6:37 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev4)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15299_full -> IGTPW_11643_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11643_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11643_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_11643/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_11643_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@forcewake:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-10/igt@i915_suspend@forcewake.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@i915_suspend@forcewake.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-2.html
* igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1:
- shard-glk: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk7/igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1.html
Known issues
------------
Here are the changes found in IGTPW_11643_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +10 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +22 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][22] ([i915#12027])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][25] ([i915#11980])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4036])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#8555])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#6344])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][37] ([i915#11965]) +3 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_exec_fair@basic-none-rrul.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: NOTRUN -> [FAIL][40] ([i915#2842])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) +3 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][42] -> [FAIL][43] ([i915#2842])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][59] -> [TIMEOUT][60] ([i915#5493])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#284])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#284])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_media_vme.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@coherency:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +9 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +4 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +10 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_fence_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4077]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_tiled_fence_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4077]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4077]) +21 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4879])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][92] +66 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb5/igt@gem_vm_create@invalid-create.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][93] +32 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4881])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6227])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][102] -> [ABORT][103] ([i915#11703])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb6/igt@i915_module_load@reload-no-display.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][104] -> [ABORT][105] ([i915#9820])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#10131] / [i915#9697])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][109] ([i915#3591])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][111] ([i915#8346])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#11681])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4387])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4387])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#4387])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#5723])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][118] ([i915#7443])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#8709]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#10333])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#5286])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3638]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +15 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][133] +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#10656]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_big_joiner@basic.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#10656])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#10656])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_big_joiner@invalid-modeset-force-joiner.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#10656])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#12042]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +27 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#12042]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6095]) +107 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +61 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +173 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +15 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][146] +79 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#12042]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#12042]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11616] / [i915#7213]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#7828]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +8 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#7828]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +8 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#7828]) +10 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3116] / [i915#3299])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9424]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7116] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#11453]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#11453]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#8814])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#11453]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#11453] / [i915#3359])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#11453])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][174] +32 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][176] -> [FAIL][177] ([i915#2346])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9723])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#8588])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8588])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3804])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8812])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3955])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#3469])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#4854])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#4854])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#1839])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#1839])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#1839]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#9337])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9337])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#3637]) +4 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3637] / [i915#3966])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#9934]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
- shard-snb: [PASS][203] -> [FAIL][204] ([i915#2122])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
- shard-snb: [PASS][206] -> [DMESG-WARN][207] ([i915#11922])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][208] ([i915#10545] / [i915#11279]) +3 other tests fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_flip@flip-vs-suspend@b-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8810])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672]) +5 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2672])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-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][215] ([i915#2672] / [i915#3555])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5274])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#5274])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][218] -> [FAIL][219] ([i915#6880])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +19 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][221] +70 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#5439])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: NOTRUN -> [FAIL][223] ([i915#6880])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +13 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][225] +41 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#5354]) +56 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3023]) +26 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#5439])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#9766])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#10433] / [i915#3458]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +15 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#1825]) +33 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8708]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +29 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_hdr@static-swap.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6301])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-256:
- shard-dg2: NOTRUN -> [DMESG-WARN][241] ([i915#1982])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8806])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3555]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#6953] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][245] ([i915#8292])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#9423]) +24 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9423]) +15 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9423]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5176] / [i915#9423]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#9423]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#5235] / [i915#9423]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#5235]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#5235]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#9728])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#5235]) +5 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9728]) +8 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#5235]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9728]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#5354])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5354]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#5978])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9685]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#9685])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][264] ([i915#9301])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#8430])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][266] -> [SKIP][267] ([i915#9519])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][268] -> [SKIP][269] ([i915#9519]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9519])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9519]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#6524])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#6524])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#11520]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9808]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#11520]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#11520]) +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#11520]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#9683])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-primary-render@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9688]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-render@edp-1.html
* igt@kms_psr@fbc-psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +20 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#9732]) +14 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#9732]) +25 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +21 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#9685]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#11131]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#11131] / [i915#5190]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#5289])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#5289])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#3555]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][292] -> [FAIL][293] ([i915#9196])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][294] -> [FAIL][295] ([i915#9196]) +1 other test fail
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][296] ([i915#9196])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8808])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#9906])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#9906])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#2437] / [i915#9412])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#2437] / [i915#9412])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#2437])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#2437] / [i915#9412])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#7387])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2434])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#2435])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#2433])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][309] ([i915#4349]) +3 other tests fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#8850])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3708] / [i915#4077])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#3291] / [i915#3708])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#3708]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#9917])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][318] ([i915#9781])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-rkl: NOTRUN -> [FAIL][319] ([i915#9781])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][320] ([i915#12027]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][322] ([i915#11713]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-7/igt@gem_exec_big@single.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][324] ([i915#2842]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][326] ([i915#2842]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][328] ([i915#5493]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][330] ([i915#9820]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [INCOMPLETE][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][334] ([i915#11808]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][336] ([i915#11808] / [i915#5956]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-mtlp: [ABORT][338] ([i915#10354]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][340] ([i915#1257]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-10/igt@kms_dp_aux_dev.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_dp_aux_dev.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a4:
- shard-dg1: [FAIL][342] ([i915#2122]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-15/igt@kms_flip@plain-flip-ts-check@d-hdmi-a4.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@d-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][344] -> [PASS][345] +3 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][346] ([i915#6880]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][348] ([i915#433]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][350] ([i915#9519]) -> [PASS][351] +2 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][352] ([i915#9519]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-dg1: [FAIL][354] ([i915#4349]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@render-node-busy-idle@ccs0:
- shard-mtlp: [FAIL][356] ([i915#4349]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-dg2: [FAIL][358] -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@sysfs_heartbeat_interval@precise@vecs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][360] ([i915#8063]) -> [SKIP][361] ([i915#9424])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_content_protection@mei-interface.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][362] ([i915#9433]) -> [SKIP][363] ([i915#9424])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][364] ([i915#7118] / [i915#9424]) -> [SKIP][365] ([i915#7118] / [i915#7162] / [i915#9424])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-1/igt@kms_content_protection@type1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: [SKIP][366] ([i915#11453]) -> [SKIP][367] ([i915#11453] / [i915#3359]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][368] ([i915#11453] / [i915#3359]) -> [SKIP][369] ([i915#11453]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][370] ([i915#3458]) -> [SKIP][371] ([i915#10433] / [i915#3458]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][372] ([i915#10433] / [i915#3458]) -> [SKIP][373] ([i915#3458]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][374] ([i915#3361]) -> [SKIP][375] ([i915#4281])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][376] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][377] ([i915#1072] / [i915#9732]) +14 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][378] ([i915#1072] / [i915#9732]) -> [SKIP][379] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_psr@fbc-psr2-cursor-render.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][380] ([i915#11131]) -> [SKIP][381] ([i915#11131] / [i915#4235])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][382] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][383] ([i915#11131] / [i915#5190])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11922]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11922
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12042]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12042
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[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#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#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#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[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#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/index.html
[-- Attachment #2: Type: text/html, Size: 123652 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.IGT: success for Improve MST HDCP tests (rev4)
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (8 preceding siblings ...)
2024-08-28 6:37 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-08-30 5:44 ` Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-08-30 5:44 UTC (permalink / raw)
To: Kandpal, Suraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev4)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15299_full -> IGTPW_11643_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_11643_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +10 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][4] -> [FAIL][5] ([i915#7742])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +22 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][17] ([i915#12027])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][20] ([i915#11980])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4036])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][32] ([i915#11965]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_exec_fair@basic-none-rrul.html
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842]) +3 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][37] -> [FAIL][38] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#5107])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +12 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][54] -> [TIMEOUT][55] ([i915#5493])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#284])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#284])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#284])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_media_vme.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@coherency:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][65] ([i915#2658])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_fence_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +7 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@gem_tiled_fence_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4077]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +21 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4079]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4879])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][87] +66 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb5/igt@gem_vm_create@invalid-create.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][88] +32 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4881])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#6227])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6227])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][97] -> [ABORT][98] ([i915#11703])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb6/igt@i915_module_load@reload-no-display.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][99] -> [ABORT][100] ([i915#9820])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][101] -> [ABORT][102] ([i915#10131] / [i915#9697])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][104] ([i915#3591])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681] / [i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][106] ([i915#8346])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4387])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4387])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#5723])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][113] ([i915#7443])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-tglu: [PASS][114] -> [ABORT][115] ([i915#12087])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-10/igt@i915_suspend@forcewake.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#8709]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#10333])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#5286])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +15 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][130] +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10656]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_big_joiner@basic.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#10656])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#10656])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_big_joiner@invalid-modeset-force-joiner.html
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#10656])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#12042]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +27 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#12042]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +107 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +61 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +173 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +15 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][143] +79 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#12042]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#12042]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#11616] / [i915#7213]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#7828]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#7828]) +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_content_protection@content-type-change.html
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#9424]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7116])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8814])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#11453]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#11453]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#11453]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#11453] / [i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#11453])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555]) +5 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][171] +32 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][173] -> [FAIL][174] ([i915#2346])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#9723])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#8588])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8588])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8812])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3955])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3469])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4854])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#4854])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#1839])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#1839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#1839]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9337])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9337])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#3966])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1:
- shard-snb: [PASS][200] -> [FAIL][201] ([i915#2122])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8381]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-vga1:
- shard-snb: [PASS][203] -> [DMESG-WARN][204] ([i915#11922])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][205] ([i915#10545] / [i915#11279]) +3 other tests fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_flip@flip-vs-suspend@b-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8810])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#2672]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2672])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#2587] / [i915#2672]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-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][212] ([i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5274])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#5274])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][215] -> [FAIL][216] ([i915#6880])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +19 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][218] +70 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: NOTRUN -> [FAIL][220] ([i915#6880])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#8708]) +13 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][222] +41 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#1825]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +56 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#3023]) +26 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#5439])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9766])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#10433] / [i915#3458]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3458]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#1825]) +33 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#3458]) +29 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_hdr@static-swap.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#6301])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-256:
- shard-dg2: NOTRUN -> [DMESG-WARN][238] ([i915#1982])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-1-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8806])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#3555]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#6953] / [i915#9423])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][242] ([i915#8292])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9423]) +24 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#9423]) +15 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9423]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#5176] / [i915#9423]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#9423]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#5235] / [i915#9423]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#5235]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#5235]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#9728])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#5235]) +5 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#9728]) +8 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#5235]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [INCOMPLETE][255] ([i915#12067])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#9728]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#5354])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#5354]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#5978])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#9685]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#9685])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][262] ([i915#9301])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#8430])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#9519])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][266] -> [SKIP][267] ([i915#9519]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9519]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#6524])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#6524])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#11520]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9808]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#11520]) +5 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#11520]) +6 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#11520]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9683])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-primary-render@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9688]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-4/igt@kms_psr@fbc-psr-primary-render@edp-1.html
* igt@kms_psr@fbc-psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +20 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9732]) +14 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +25 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9732]) +21 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#9685]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#11131]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#11131] / [i915#5190]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#5289])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#5289])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-mtlp: [PASS][290] -> [FAIL][291] ([i915#9196])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][292] -> [FAIL][293] ([i915#9196]) +1 other test fail
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][294] ([i915#9196])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
* igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1:
- shard-glk: [PASS][295] -> [INCOMPLETE][296] ([i915#9946])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-glk7/igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-glk4/igt@kms_vblank@query-forked-busy@pipe-c-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8808])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#9906])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#9906])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#2437] / [i915#9412])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#2437] / [i915#9412])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#2437])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#2437] / [i915#9412])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-18/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#7387])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2434])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-2/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#2435])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#2433])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][309] ([i915#4349]) +3 other tests fail
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#8850])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3708] / [i915#4077])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#3291] / [i915#3708])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#3708]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#9917])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][318] ([i915#9781])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-rkl: NOTRUN -> [FAIL][319] ([i915#9781])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-6/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [FAIL][320] ([i915#12027]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][322] ([i915#11713]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-7/igt@gem_exec_big@single.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][324] ([i915#2842]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][326] ([i915#2842]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][328] ([i915#5493]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][330] ([i915#9820]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [INCOMPLETE][332] -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][334] ([i915#11808]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][336] ([i915#11808] / [i915#5956]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-mtlp: [ABORT][338] ([i915#10354]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_dp_aux_dev:
- shard-dg2: [SKIP][340] ([i915#1257]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-10/igt@kms_dp_aux_dev.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_dp_aux_dev.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a4:
- shard-dg1: [FAIL][342] ([i915#2122]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-15/igt@kms_flip@plain-flip-ts-check@d-hdmi-a4.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@d-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][344] -> [PASS][345] +3 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][346] ([i915#6880]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [SKIP][348] ([i915#433]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][350] ([i915#9519]) -> [PASS][351] +2 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][352] ([i915#9519]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-dg1: [FAIL][354] ([i915#4349]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-16/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@render-node-busy-idle@ccs0:
- shard-mtlp: [FAIL][356] ([i915#4349]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-dg2: [FAIL][358] ([i915#12076]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@sysfs_heartbeat_interval@precise@vecs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][360] ([i915#8063]) -> [SKIP][361] ([i915#9424])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-4/igt@kms_content_protection@mei-interface.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][362] ([i915#9433]) -> [SKIP][363] ([i915#9424])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][364] ([i915#7118] / [i915#9424]) -> [SKIP][365] ([i915#7118] / [i915#7162] / [i915#9424])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-1/igt@kms_content_protection@type1.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: [SKIP][366] ([i915#11453]) -> [SKIP][367] ([i915#11453] / [i915#3359]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][368] ([i915#11453] / [i915#3359]) -> [SKIP][369] ([i915#11453]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][370] ([i915#3458]) -> [SKIP][371] ([i915#10433] / [i915#3458]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][372] ([i915#10433] / [i915#3458]) -> [SKIP][373] ([i915#3458]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][374] ([i915#3361]) -> [SKIP][375] ([i915#4281])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][376] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][377] ([i915#1072] / [i915#9732]) +14 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][378] ([i915#1072] / [i915#9732]) -> [SKIP][379] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_psr@fbc-psr2-cursor-render.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: [SKIP][380] ([i915#11131]) -> [SKIP][381] ([i915#11131] / [i915#4235])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][382] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][383] ([i915#11131] / [i915#5190])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15299/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11922]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11922
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12042]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12042
[i915#12067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12067
[i915#12076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12076
[i915#12087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12087
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[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#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#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#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[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#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11643/index.html
[-- Attachment #2: Type: text/html, Size: 124708 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-08-30 5:44 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-27 6:18 [PATCH i-g-t 0/5] Improve MST HDCP tests 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-27 6:19 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
2024-08-27 6:19 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
2024-08-27 10:44 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev4) Patchwork
2024-08-27 10:56 ` ✓ Fi.CI.BAT: " Patchwork
2024-08-27 17:50 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-28 6:37 ` ✗ Fi.CI.IGT: " Patchwork
2024-08-30 5:44 ` ✓ Fi.CI.IGT: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
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-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