* [PATCH i-g-t 0/5] Improve MST HDCP tests
@ 2024-08-20 8:12 Suraj Kandpal
2024-08-20 8:12 ` [PATCH i-g-t 1/5] tests/kms_content_protection: Move HDCP output checks earlier Suraj Kandpal
` (8 more replies)
0 siblings, 9 replies; 17+ 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
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 | 186 ++++++++++++++++++++++-----------
1 file changed, 125 insertions(+), 61 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 17+ messages in thread
* [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
2024-08-20 8:12 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
` (7 subsequent siblings)
8 siblings, 1 reply; 17+ 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] 17+ messages in thread
* [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call
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-20 8:12 ` Suraj Kandpal
2024-08-21 14:37 ` B, Jeevan
2024-08-20 8:12 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
` (6 subsequent siblings)
8 siblings, 1 reply; 17+ 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
Currently we are calling try commit twice once in if condition and
again right after that. The correct sequence should be we call try
commit again only if the first one fails.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/kms_content_protection.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 6bd744351..db6dc17b1 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -679,10 +679,10 @@ test_content_protection_mst(int content_type)
for (count = 0; count < valid_outputs; count++)
prepare_modeset_on_mst_output(hdcp_mst_output[count]);
- }
- ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
- igt_require_f(ret == 0, "Commit failure during MST modeset\n");
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ igt_require_f(ret == 0, "Commit failure during MST modeset\n");
+ }
for (count = 0; count < valid_outputs; count++) {
igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED);
--
2.43.2
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable
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-20 8:12 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
@ 2024-08-20 8:12 ` Suraj Kandpal
2024-08-21 14:46 ` B, Jeevan
2024-08-20 8:12 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
` (5 subsequent siblings)
8 siblings, 1 reply; 17+ 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
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>
---
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] 17+ messages in thread
* [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (2 preceding siblings ...)
2024-08-20 8:12 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
@ 2024-08-20 8:12 ` Suraj Kandpal
2024-08-20 8:12 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
` (4 subsequent siblings)
8 siblings, 0 replies; 17+ 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
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]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/kms_content_protection.c | 85 +++++++++++++++++++++++++++++-----
1 file changed, 74 insertions(+), 11 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 473686939..87d7526ee 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -278,6 +278,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 +661,49 @@ static void test_cp_lic_on_mst(igt_output_t *mst_outputs[], int valid_outputs, b
}
}
+static bool
+test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int valid_outputs,
+ int retries, int content_type)
+{
+ igt_display_t *display = &data.display;
+ int retry_orig = retries, count;
+ bool ret;
+ u64 val;
+
+ do {
+ if (retry_orig != retries)
+ test_mst_cp_disable(hdcp_mst_output, COMMIT_ATOMIC, valid_outputs);
+
+ for (count = 0; count < valid_outputs; count++) {
+ igt_output_set_prop_value(hdcp_mst_output[count],
+ IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED);
+
+ if (hdcp_mst_output[count]->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE])
+ igt_output_set_prop_value(hdcp_mst_output[count],
+ IGT_CONNECTOR_HDCP_CONTENT_TYPE,
+ content_type);
+ }
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ ret = wait_for_prop_value(hdcp_mst_output[0], CP_ENABLED,
+ KERNEL_AUTH_TIME_ALLOWED_MSEC);
+ for (count = 1; count < valid_outputs; count++) {
+ val = igt_output_get_prop(hdcp_mst_output[count],
+ IGT_CONNECTOR_CONTENT_PROTECTION);
+ ret &= (val == CP_ENABLED);
+ }
+
+ retries -= 1;
+ if (!ret || retries)
+ igt_debug("Retry %d/3\n", 3 - retries);
+ } while (retries && !ret);
+
+ igt_assert_f(ret, "Content Protection not enabled on MST outputs\n");
+
+ return ret;
+}
+
static void
test_content_protection_mst(int content_type)
{
@@ -685,19 +758,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] 17+ messages in thread
* [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (3 preceding siblings ...)
2024-08-20 8:12 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
@ 2024-08-20 8:12 ` Suraj Kandpal
2024-08-21 14:49 ` B, Jeevan
2024-08-20 9:07 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev2) Patchwork
` (3 subsequent siblings)
8 siblings, 1 reply; 17+ 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
Set fb as red when HDCP is disabled and green when HDCP is enabled
rather than randomly setting the color. This helps to visually
verify HDCP's enablement status rather than having to look at the
logs.
--v2
-Add reason for this change in commit message [Jeevan]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
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 87d7526ee..3d158fbd8 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -523,12 +523,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);
@@ -537,8 +536,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);
}
@@ -735,7 +734,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;
@@ -752,7 +751,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");
@@ -762,6 +761,13 @@ test_content_protection_mst(int content_type)
ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs, 2, content_type);
+ if (ret) {
+ for (i = 0; i < valid_outputs; i++)
+ prepare_modeset_on_mst_output(hdcp_mst_output[count], true);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+ }
+
if (data.cp_tests & CP_LIC)
test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0);
--
2.43.2
^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✓ CI.xeBAT: success for Improve MST HDCP tests (rev2)
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (4 preceding siblings ...)
2024-08-20 8:12 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
@ 2024-08-20 9:07 ` Patchwork
2024-08-20 9:18 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-08-20 9:07 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1241 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev2)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7978_BAT -> XEIGTPW_11602_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11602_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
Build changes
-------------
* IGT: IGT_7978 -> IGTPW_11602
IGTPW_11602: 11602
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1798-4d24271792fac837e728f7bb6237a94ee46cc76e: 4d24271792fac837e728f7bb6237a94ee46cc76e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/index.html
[-- Attachment #2: Type: text/html, Size: 1639 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Fi.CI.BAT: success for Improve MST HDCP tests (rev2)
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (5 preceding siblings ...)
2024-08-20 9:07 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev2) Patchwork
@ 2024-08-20 9:18 ` Patchwork
2024-08-20 13:22 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-21 0:13 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-08-20 9:18 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1955 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev2)
URL : https://patchwork.freedesktop.org/series/137215/
State : success
== Summary ==
CI Bug Log - changes from IGT_7978 -> IGTPW_11602
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/index.html
Participating hosts (41 -> 38)
------------------------------
Missing (3): bat-rpls-4 bat-adlp-6 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11602 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [PASS][1] -> [DMESG-WARN][2] ([i915#11349])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/bat-arls-2/igt@i915_selftest@live@hangcheck.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-arls-1: [DMESG-WARN][3] ([i915#11349] / [i915#11378]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/bat-arls-1/igt@i915_selftest@live@hangcheck.html
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7978 -> IGTPW_11602
CI-20190529: 20190529
CI_DRM_15263: 4d24271792fac837e728f7bb6237a94ee46cc76e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11602: 11602
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/index.html
[-- Attachment #2: Type: text/html, Size: 2640 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ CI.xeFULL: failure for Improve MST HDCP tests (rev2)
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (6 preceding siblings ...)
2024-08-20 9:18 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-08-20 13:22 ` Patchwork
2024-08-21 0:13 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-08-20 13:22 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 62358 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev2)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7978_full -> XEIGTPW_11602_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11602_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11602_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_11602_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2] +5 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-mmap:
- shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-7/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-mmap.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_reset@gt-reset:
- shard-lnl: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@xe_exec_reset@gt-reset.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@xe_exec_reset@gt-reset.html
* igt@xe_oa@mi-rpc:
- shard-lnl: [PASS][7] -> [DMESG-FAIL][8] +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@xe_oa@mi-rpc.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@xe_oa@mi-rpc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@xe_oa@polling-small-buf:
- {shard-bmg}: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-2/igt@xe_oa@polling-small-buf.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-4/igt@xe_oa@polling-small-buf.html
Known issues
------------
Here are the changes found in XEIGTPW_11602_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_joiner@invalid-modeset:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#346])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-1/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#1252])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1399]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#787]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#599])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#309])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1421])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#886]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1401] / [Intel XE#1745])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1401])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#651])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#656]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#1162]) +1 other test dmesg-warn
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg2-set2: [PASS][32] -> [DMESG-WARN][33] ([Intel XE#1551]) +1 other test dmesg-warn
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_plane@plane-panning-bottom-right-suspend.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][34] -> [FAIL][35] ([Intel XE#361]) +2 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-lnl: [PASS][36] -> [SKIP][37] ([Intel XE#870])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_pm_backlight@fade-with-suspend.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-7/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#718])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@pr-cursor-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#929])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_psr@pr-cursor-blt.html
* igt@kms_scaling_modes@scaling-mode-full-aspect@pipe-c-edp-1:
- shard-lnl: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1638]) +2 other tests dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-4/igt@kms_scaling_modes@scaling-mode-full-aspect@pipe-c-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@kms_scaling_modes@scaling-mode-full-aspect@pipe-c-edp-1.html
* igt@kms_vrr@max-min:
- shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#2443]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-7/igt@kms_vrr@max-min.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-8/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][45] -> [TIMEOUT][46] ([Intel XE#1473] / [Intel XE#402])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][47] -> [TIMEOUT][48] ([Intel XE#1473]) +2 other tests timeout
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_evict@evict-beng-threads-large.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1195] / [Intel XE#1473])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1392])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#2229])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#378])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-1/igt@xe_module_load@force-load.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#2028]) +3 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@xe_pm@s2idle-exec-after.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-lnl: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#1616])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@xe_pm@s2idle-multiple-execs.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#2019])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_pm@s4-basic-exec.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][60] -> [ABORT][61] ([Intel XE#1607] / [Intel XE#1794])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@xe_pm@s4-vm-bind-prefetch.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2019] / [Intel XE#2280])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_pm@s4-vm-bind-unbind-all.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#2028] / [Intel XE#2512]) +1 other test fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@xe_pm_residency@gt-c6-freeze.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-1/igt@xe_pm_residency@gt-c6-freeze.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-3:
- {shard-bmg}: [DMESG-WARN][66] ([Intel XE#1033]) -> [PASS][67] +1 other test pass
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-3.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-3.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][68] ([Intel XE#1701]) -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- {shard-bmg}: [FAIL][70] ([Intel XE#1426]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-5/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][72] ([Intel XE#1426]) -> [PASS][73] +1 other test pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][74] ([Intel XE#1426]) -> [PASS][75] +1 other test pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [FAIL][76] ([Intel XE#1659]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_cursor_crc@cursor-suspend:
- {shard-bmg}: [INCOMPLETE][78] -> [PASS][79] +5 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- {shard-bmg}: [FAIL][80] -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: [FAIL][82] ([Intel XE#2028]) -> [PASS][83] +5 other tests pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][84] ([Intel XE#1201] / [Intel XE#417]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html
- {shard-bmg}: [SKIP][86] ([Intel XE#417]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- {shard-bmg}: [DMESG-WARN][88] ([Intel XE#877]) -> [PASS][89] +4 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-4/igt@kms_plane@pixel-format@pipe-b-plane-0.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-7/igt@kms_plane@pixel-format@pipe-b-plane-0.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [DMESG-FAIL][90] ([Intel XE#324]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-4/igt@kms_plane@plane-position-hole.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-2/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- shard-lnl: [DMESG-WARN][92] ([Intel XE#324]) -> [PASS][93] +3 other tests pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-2/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-lnl: [SKIP][94] ([Intel XE#870]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-3/igt@kms_pm_backlight@bad-brightness.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-3/igt@kms_pm_backlight@bad-brightness.html
* igt@xe_evict@evict-beng-threads-large:
- {shard-bmg}: [TIMEOUT][96] ([Intel XE#1473]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-8/igt@xe_evict@evict-beng-threads-large.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][98] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-threads-large:
- {shard-bmg}: [TIMEOUT][100] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-bmg-8/igt@xe_evict@evict-threads-large.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-bmg-3/igt@xe_evict@evict-threads-large.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][102] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][103] +1 other test pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_live_ktest@xe_migrate.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_live_ktest@xe_migrate.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [ABORT][104] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][106] ([Intel XE#2019]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][108] ([Intel XE#958]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][110] ([Intel XE#623]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#623])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][112] ([Intel XE#316]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#316])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][115] ([Intel XE#316]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][116] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][117] ([Intel XE#1124]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1124]) -> [SKIP][119] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][121] ([Intel XE#367]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-dg2-set2: [SKIP][122] ([Intel XE#367]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][124] ([Intel XE#2191]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][127] ([Intel XE#2191]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][128] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][129] ([Intel XE#1252])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][130] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][132] ([Intel XE#787]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][135] ([Intel XE#787]) +27 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][136] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][137] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1152]) -> [SKIP][139] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][140] ([Intel XE#306]) -> [SKIP][141] ([Intel XE#1201] / [Intel XE#306])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][142] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][143] ([Intel XE#373]) +5 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][144] ([Intel XE#373]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#373]) +9 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][146] ([Intel XE#307]) -> [SKIP][147] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][149] ([Intel XE#308]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][150] ([Intel XE#308]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][152] ([Intel XE#323]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][154] ([Intel XE#455]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][156] ([Intel XE#776]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#776])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1201] / [Intel XE#703]) -> [SKIP][159] ([Intel XE#703])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1137]) -> [SKIP][161] ([Intel XE#1137] / [Intel XE#1201])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][162] ([Intel XE#1135]) -> [SKIP][163] ([Intel XE#1135] / [Intel XE#1201])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_feature_discovery@psr1.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][165] ([Intel XE#455]) +15 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][167] ([Intel XE#651]) +17 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][168] ([Intel XE#651]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#651]) +23 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][170] ([Intel XE#653]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#653]) +22 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][173] ([Intel XE#653]) +17 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: [SKIP][174] ([Intel XE#1450] / [Intel XE#599]) -> [SKIP][175] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#599])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-lnl-7/igt@kms_invalid_mode@clock-too-high.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-lnl-7/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][176] ([Intel XE#498]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#498]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: [SKIP][178] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][179] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][181] ([Intel XE#2318]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][183] ([Intel XE#2318] / [Intel XE#455]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][185] ([Intel XE#870])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][186] ([Intel XE#870]) -> [SKIP][187] ([Intel XE#1201] / [Intel XE#870])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_backlight@fade.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1122]) -> [SKIP][189] ([Intel XE#1122] / [Intel XE#1201]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1129]) -> [SKIP][191] ([Intel XE#1129] / [Intel XE#1201])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1489]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][194] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][195] ([Intel XE#1489]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][197] ([Intel XE#1122])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][199] ([Intel XE#929]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][200] ([Intel XE#929]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#929]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1149]) -> [SKIP][203] ([Intel XE#1149] / [Intel XE#1201])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][204] ([Intel XE#327]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][207] ([Intel XE#327])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][208] ([Intel XE#330]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#330])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][211] ([Intel XE#756])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1091]) -> [SKIP][213] ([Intel XE#1091] / [Intel XE#1201]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][214] ([Intel XE#1123]) -> [SKIP][215] ([Intel XE#1123] / [Intel XE#1201])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][216] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][217] ([Intel XE#1123])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][218] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][219] ([Intel XE#1126])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][220] ([Intel XE#1041] / [Intel XE#1473]) -> [INCOMPLETE][221] ([Intel XE#1195] / [Intel XE#1473])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][222] ([Intel XE#288]) -> [SKIP][223] ([Intel XE#1201] / [Intel XE#288]) +25 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race.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]) +15 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/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#1201] / [Intel XE#2360]) -> [SKIP][227] ([Intel XE#2360])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [INCOMPLETE][228] ([Intel XE#2105]) -> [TIMEOUT][229] ([Intel XE#2105])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_exec_reset@parallel-gt-reset.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][230] ([Intel XE#255]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#255])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_huc_copy@huc_copy.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@xe_huc_copy@huc_copy.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][232] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][233] ([Intel XE#560])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-466/igt@xe_media_fill@media-fill.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][235] ([Intel XE#2541]) +3 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_oa@privileged-forked-access-vaddr.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][236] ([Intel XE#2541]) -> [SKIP][237] ([Intel XE#1201] / [Intel XE#2541]) +6 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][238] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][239] ([Intel XE#979])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][241] ([Intel XE#2284] / [Intel XE#366])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][243] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][244] ([Intel XE#1162] / [Intel XE#569]) -> [DMESG-WARN][245] ([Intel XE#1162] / [Intel XE#1941] / [Intel XE#569])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][246] ([Intel XE#944]) -> [SKIP][247] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-432/igt@xe_query@multigpu-query-config.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-435/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][248] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][249] ([Intel XE#944])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-WARN][250] ([Intel XE#1760]) -> [DMESG-FAIL][251] ([Intel XE#1760])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7978/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/shard-dg2-463/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#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[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#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[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#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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019
[Intel XE#2026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2026
[Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028
[Intel XE#2058]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2058
[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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[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#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2429
[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#2512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2512
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2576]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2576
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[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#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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7978 -> IGTPW_11602
IGTPW_11602: 11602
IGT_7978: 4083a9d8abc80c8a905ffdc20bc76383b1e07e79 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1798-4d24271792fac837e728f7bb6237a94ee46cc76e: 4d24271792fac837e728f7bb6237a94ee46cc76e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11602/index.html
[-- Attachment #2: Type: text/html, Size: 78821 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Fi.CI.IGT: failure for Improve MST HDCP tests (rev2)
2024-08-20 8:12 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
` (7 preceding siblings ...)
2024-08-20 13:22 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-08-21 0:13 ` Patchwork
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-08-21 0:13 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: Improve MST HDCP tests (rev2)
URL : https://patchwork.freedesktop.org/series/137215/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7978_full -> IGTPW_11602_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11602_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11602_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_11602/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11602_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@i915_pm_rpm@system-suspend-execbuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-7/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-1:
- shard-glk: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk8/igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk9/igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-1.html
Known issues
------------
Here are the changes found in IGTPW_11602_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +5 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-8/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_param@vm:
- shard-dg2: [PASS][18] -> [SKIP][19] ([i915#2575]) +25 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@gem_ctx_param@vm.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_ctx_param@vm.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-snb7/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#2575]) +21 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][29] ([i915#11965]) +3 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@capture@vecs0-smem:
- shard-mtlp: NOTRUN -> [FAIL][30] ([i915#11965])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@gem_exec_capture@capture@vecs0-smem.html
* igt@gem_exec_fair@basic-flow:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-6/igt@gem_exec_fair@basic-pace@vcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][34] ([i915#2842]) +3 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +8 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +14 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][48] ([i915#2190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-dg2: [PASS][49] -> [SKIP][50] ([i915#9643])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@gem_lmem_evict@dontneed-evict-race.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#284])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@gem_mmap@bad-offset.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-3/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][64] ([i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk8/igt@gem_pread@exhaustion.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@gem_pread@uncached.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#4270]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#8411])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4885])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4885])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4879])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][81] ([i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4958])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][86] +20 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][87] -> [ABORT][88] ([i915#5566])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk9/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4881])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][95] -> [ABORT][96] ([i915#9820])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [PASS][97] -> [ABORT][98] ([i915#9820])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [PASS][99] -> [ABORT][100] ([i915#9820])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#6412])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rpm@gem-pread:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#11623])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@i915_pm_rpm@gem-pread.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#11681])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html
* igt@intel_hwmon@hwmon-read:
- shard-dg2: [PASS][105] -> [SKIP][106] +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@intel_hwmon@hwmon-read.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#7707])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3826])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8709]) +11 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#8709]) +7 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs:
- shard-glk: [PASS][116] -> [FAIL][117] ([i915#11859]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk5/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk8/igt@kms_atomic_transition@modeset-transition-fencing@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][119] ([i915#1769]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][124] +13 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#10656])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#10656])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +57 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +187 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +23 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +51 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][136] +362 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +79 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#7828]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-5/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [DMESG-WARN][145] ([i915#1982])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-1.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#9424])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_content_protection@lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3359]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#11453])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#11453]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#11453]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8814]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][164] +15 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#5354]) +21 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#4103])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][169] ([i915#2346])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#9833])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#9723])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#9723])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#1257])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3469])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#1839])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-7/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#1839])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#1839])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9337])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#4881])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-3/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#3637]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#8381]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#9934]) +8 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@a-vga1:
- shard-snb: [PASS][187] -> [FAIL][188] ([i915#2122]) +2 other tests fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-snb6/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8810])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][195] -> [FAIL][196] ([i915#6880])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][197] +42 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#8708]) +22 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#10433] / [i915#3458]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3458]) +10 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +11 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][202] +75 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#3458]) +24 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8708]) +5 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +19 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#1825]) +24 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +11 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#433])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#6301])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555]) +6 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8806])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][217] ([i915#8292])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][218] ([i915#8292])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9423]) +20 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#9423]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575] / [i915#9423]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#5176] / [i915#9423]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#9423]) +7 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5235] / [i915#9423]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-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][225] ([i915#5235]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/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@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#9728]) +7 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9728]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#5235]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9728]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#5354])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9812])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#5354]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#10139])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#5978])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3361])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9685])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9519]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][240] -> [SKIP][241] ([i915#9519]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#11520]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#11520]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#11520]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#11520])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-6/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#9808]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9683])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4348])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#1072] / [i915#9732]) +10 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#9732]) +17 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9688]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9732]) +24 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@psr-sprite-blt:
- shard-snb: NOTRUN -> [SKIP][254] +64 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-snb2/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +14 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#9685])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#9685])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#11131] / [i915#4235] / [i915#5190])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#5289])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#5289]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#11131]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8809])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#8623])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8623])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][265] -> [FAIL][266] ([i915#9196])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][267] ([i915#9196])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8808])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#9906])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9906])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#9906]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#2437] / [i915#9412])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#2437] / [i915#9412])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_writeback@writeback-pixel-formats.html
- shard-glk: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@non-system-wide-paranoid:
- shard-dg2: [PASS][277] -> [SKIP][278] ([i915#11692]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@perf@non-system-wide-paranoid.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@perf@non-system-wide-paranoid.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2433])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][280] -> [FAIL][281] ([i915#4349]) +3 other tests fail
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#8516])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#11692])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@perf_pmu@render-node-busy.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][284] -> [FAIL][285] ([i915#4349]) +2 other tests fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-mtlp: [PASS][286] -> [FAIL][287] ([i915#4349]) +3 other tests fail
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vecs0.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vecs0.html
- shard-dg2: NOTRUN -> [FAIL][288] ([i915#4349]) +4 other tests fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3291] / [i915#3708])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3708] / [i915#4077])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#3708] / [i915#4077]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-17/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#3708])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9917])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#9917])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][296] ([i915#9781])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][297] ([i915#9781])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#4818])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@drm_read@empty-block:
- shard-dg1: [DMESG-WARN][299] ([i915#4423]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@drm_read@empty-block.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@drm_read@empty-block.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][301] ([i915#5784]) -> [PASS][302]
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-3/igt@gem_eio@reset-stress.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-1/igt@gem_exec_fair@basic-none@vecs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-1/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][305] ([i915#5566]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk8/igt@gen9_exec_parse@allowed-all.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk5/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [ABORT][307] ([i915#9820]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][309] ([i915#11808] / [i915#5956]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][311] ([i915#11808]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-rkl: [DMESG-WARN][313] ([i915#10166]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-4/igt@kms_cursor_legacy@single-move@pipe-a.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3:
- shard-dg2: [FAIL][315] ([i915#10826]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [FAIL][317] ([i915#6880]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-snb: [SKIP][319] -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128:
- shard-mtlp: [DMESG-WARN][321] ([i915#1982]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-mtlp-2/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-mtlp-4/igt@kms_plane_cursor@viewport@pipe-b-edp-1-size-128.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][323] ([i915#9519]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][325] ([i915#9196]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][327] ([i915#11814] / [i915#11815]) -> [ABORT][328] ([i915#11814])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: [SKIP][329] ([i915#7697]) -> [SKIP][330] ([i915#2575])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: [SKIP][331] ([i915#3539] / [i915#4852]) -> [SKIP][332] ([i915#2575])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg2: [SKIP][333] ([i915#3281]) -> [SKIP][334] ([i915#2575]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: [SKIP][335] ([i915#4077]) -> [SKIP][336] ([i915#2575]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg2: [SKIP][337] ([i915#4083]) -> [SKIP][338] ([i915#2575])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-8/igt@gem_mmap_wc@read-write-distinct.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_readwrite@read-write:
- shard-dg2: [SKIP][339] ([i915#3282]) -> [SKIP][340] ([i915#2575])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@gem_readwrite@read-write.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: [SKIP][341] ([i915#5190] / [i915#8428]) -> [SKIP][342] ([i915#2575] / [i915#5190]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: [SKIP][343] ([i915#3297]) -> [SKIP][344] ([i915#2575])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg2: [SKIP][345] ([i915#2856]) -> [SKIP][346] ([i915#2575])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@gen9_exec_parse@bb-oversize.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][347] ([i915#9820]) -> [ABORT][348] ([i915#9697] / [i915#9820])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: [SKIP][349] ([i915#11681]) -> [SKIP][350] ([i915#2575])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: [SKIP][351] ([i915#1769] / [i915#3555]) -> [SKIP][352] ([i915#2575])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-tglu: [ABORT][353] ([i915#10354]) -> [SKIP][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-tglu-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-tglu-9/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2: [SKIP][355] ([i915#4538] / [i915#5190]) -> [SKIP][356] ([i915#5190])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg2: [SKIP][357] ([i915#7828]) -> [SKIP][358] ([i915#2575])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][359] ([i915#7118] / [i915#9424]) -> [SKIP][360] ([i915#2575])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-8/igt@kms_content_protection@atomic.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][361] ([i915#9424]) -> [SKIP][362] ([i915#9433])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: [SKIP][363] ([i915#11453]) -> [SKIP][364] ([i915#11453] / [i915#3359])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][365] ([i915#11453]) -> [SKIP][366] ([i915#2575])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: [SKIP][367] ([i915#5354]) -> [SKIP][368] ([i915#2575]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: [SKIP][369] ([i915#3840] / [i915#9688]) -> [SKIP][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg2: [SKIP][371] -> [SKIP][372] ([i915#2575]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: [SKIP][373] ([i915#5274]) -> [SKIP][374] ([i915#2575])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][375] ([i915#10433] / [i915#3458]) -> [SKIP][376] ([i915#3458])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: [SKIP][377] ([i915#4423] / [i915#8708]) -> [SKIP][378] ([i915#8708])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][379] ([i915#8708]) -> [SKIP][380] +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][381] ([i915#5354]) -> [SKIP][382] +5 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][383] ([i915#3458]) -> [SKIP][384] ([i915#10433] / [i915#3458]) +3 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-dg2: [SKIP][385] ([i915#3458]) -> [SKIP][386] +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-dg2: [SKIP][387] ([i915#3555] / [i915#8228]) -> [SKIP][388] ([i915#2575])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-1/igt@kms_hdr@static-swap.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_hdr@static-swap.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf:
- shard-dg2: [SKIP][389] ([i915#11520]) -> [SKIP][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg1: [SKIP][391] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][392] ([i915#1072] / [i915#9732])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-blt.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg2: [SKIP][393] ([i915#1072] / [i915#9732]) -> [SKIP][394] +5 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-6/igt@kms_psr@fbc-psr-basic.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: [SKIP][395] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][396] ([i915#1072] / [i915#9732]) +8 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: [SKIP][397] ([i915#1072] / [i915#9732]) -> [SKIP][398] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][399] ([i915#11131] / [i915#4235]) -> [SKIP][400] ([i915#11131])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][401] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][402] ([i915#11131] / [i915#5190])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: [FAIL][403] ([i915#10959]) -> [SKIP][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@max-min:
- shard-dg2: [SKIP][405] ([i915#9906]) -> [SKIP][406] ([i915#2575])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-4/igt@kms_vrr@max-min.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@kms_vrr@max-min.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][407] ([i915#9100]) -> [FAIL][408] ([i915#7484])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: [SKIP][409] ([i915#9917]) -> [SKIP][410] ([i915#2575])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: [SKIP][411] ([i915#4818]) -> [SKIP][412] ([i915#2575] / [i915#4818])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7978/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11623
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11692]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11692
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[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#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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[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#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#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#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#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#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/ker
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11602/index.html
[-- Attachment #2: Type: text/html, Size: 121537 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call
2024-08-20 8:12 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
@ 2024-08-21 14:37 ` B, Jeevan
0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2024-08-21 14:37 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 2/5] tests/kms_content_protection: Move try commit call
>
> Currently we are calling try commit twice once in if condition and again right
> after that. The correct sequence should be we call try commit again only if the
> first one fails.
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
LGTM.
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 [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable
2024-08-20 8:12 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
@ 2024-08-21 14:46 ` B, Jeevan
0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2024-08-21 14:46 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:43 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 3/5] tests/kms_content_protection: Rename
> igt_commit_style variable
>
> 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>
LGTM.
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 [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status
2024-08-20 8:12 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
@ 2024-08-21 14:49 ` B, Jeevan
0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2024-08-21 14:49 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:43 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 5/5] tests/kms_content_protection: Set screen red/green
> based on CP Status
>
> Set fb as red when HDCP is disabled and green when HDCP is enabled rather
> than randomly setting the color. This helps to visually verify HDCP's enablement
> status rather than having to look at the logs.
>
> --v2
> -Add reason for this change in commit message [Jeevan]
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
LGTM.
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 87d7526ee..3d158fbd8 100644
> --- a/tests/kms_content_protection.c
> +++ b/tests/kms_content_protection.c
> @@ -523,12 +523,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);
>
> @@ -537,8 +536,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); }
>
> @@ -735,7 +734,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; @@ -
> 752,7 +751,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");
> @@ -762,6 +761,13 @@ test_content_protection_mst(int content_type)
>
> ret = test_mst_cp_enable_with_retry(hdcp_mst_output, valid_outputs,
> 2, content_type);
>
> + if (ret) {
> + for (i = 0; i < valid_outputs; i++)
> +
> prepare_modeset_on_mst_output(hdcp_mst_output[count], true);
> +
> + igt_display_commit2(display, COMMIT_ATOMIC);
> + }
> +
> if (data.cp_tests & CP_LIC)
> test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 0);
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 17+ 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; 17+ 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] 17+ messages in thread
* [PATCH i-g-t 0/5] Improve MST HDCP tests
@ 2024-08-22 6:11 Suraj Kandpal
2024-08-27 5:21 ` B, Jeevan
0 siblings, 1 reply; 17+ messages in thread
From: Suraj Kandpal @ 2024-08-22 6:11 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, ankit.k.nautiyal, jeevan.b, Suraj Kandpal
Improve HDCP MST test by doing the following
-Eliminate unnecessary loops and wait times
-Add retry logic for mst test cases
-Change screen color based on HDCP Encryption Status
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (5):
tests/kms_content_protection: Move HDCP output checks earlier
tests/kms_content_protection: Move try commit call
tests/kms_content_protection: Rename igt_commit_style variable
tests/kms_content_protection: Add retry logic for mst usecase
tests/kms_content_protection: Set screen red/green based on CP Status
tests/kms_content_protection.c | 184 ++++++++++++++++++++++-----------
1 file changed, 123 insertions(+), 61 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t 0/5] Improve MST HDCP tests
2024-08-22 6:11 [PATCH i-g-t 0/5] Improve MST HDCP tests Suraj Kandpal
@ 2024-08-27 5:21 ` B, Jeevan
0 siblings, 0 replies; 17+ messages in thread
From: B, Jeevan @ 2024-08-27 5:21 UTC (permalink / raw)
To: Kandpal, Suraj, igt-dev@lists.freedesktop.org
Cc: Samala, Pranay, Nautiyal, Ankit K
Can you please re-report the issue or fix the results so that we can merge this.
BR- Jeevan B
> -----Original Message-----
> From: Kandpal, Suraj <suraj.kandpal@intel.com>
> Sent: Thursday, August 22, 2024 11:42 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Samala, Pranay <pranay.samala@intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal@intel.com>; B, Jeevan <jeevan.b@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>
> Subject: [PATCH i-g-t 0/5] Improve MST HDCP tests
>
> Improve HDCP MST test by doing the following -Eliminate unnecessary loops
> and wait times -Add retry logic for mst test cases -Change screen color based on
> HDCP Encryption Status
>
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>
> Suraj Kandpal (5):
> tests/kms_content_protection: Move HDCP output checks earlier
> tests/kms_content_protection: Move try commit call
> tests/kms_content_protection: Rename igt_commit_style variable
> tests/kms_content_protection: Add retry logic for mst usecase
> tests/kms_content_protection: Set screen red/green based on CP Status
>
> tests/kms_content_protection.c | 184 ++++++++++++++++++++++-----------
> 1 file changed, 123 insertions(+), 61 deletions(-)
>
> --
> 2.43.2
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t 0/5] Improve MST HDCP tests
@ 2024-08-27 6:18 Suraj Kandpal
0 siblings, 0 replies; 17+ 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] 17+ messages in thread
end of thread, other threads:[~2024-08-27 6:21 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2024-08-20 8:12 ` [PATCH i-g-t 2/5] tests/kms_content_protection: Move try commit call Suraj Kandpal
2024-08-21 14:37 ` B, Jeevan
2024-08-20 8:12 ` [PATCH i-g-t 3/5] tests/kms_content_protection: Rename igt_commit_style variable Suraj Kandpal
2024-08-21 14:46 ` B, Jeevan
2024-08-20 8:12 ` [PATCH i-g-t 4/5] tests/kms_content_protection: Add retry logic for mst usecase Suraj Kandpal
2024-08-20 8:12 ` [PATCH i-g-t 5/5] tests/kms_content_protection: Set screen red/green based on CP Status Suraj Kandpal
2024-08-21 14:49 ` B, Jeevan
2024-08-20 9:07 ` ✓ CI.xeBAT: success for Improve MST HDCP tests (rev2) Patchwork
2024-08-20 9:18 ` ✓ Fi.CI.BAT: " Patchwork
2024-08-20 13:22 ` ✗ CI.xeFULL: failure " Patchwork
2024-08-21 0:13 ` ✗ Fi.CI.IGT: " 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-27 5:21 ` B, Jeevan
2024-08-27 6:18 Suraj Kandpal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox