* [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest
@ 2025-07-09 15:19 Santhosh Reddy Guddati
2025-07-09 16:02 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2025-07-09 15:19 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, mohammed.thasleem, jeevan.b, suraj.kandpal,
Santhosh Reddy Guddati
If a Panel supports both HDCP1.4 and HDCP2.2 versions, the kernel will
always choose the HDCP2.2 protection path and if this fails, then
HDCP1.4 will be tried.
The subtest uses debugfs support to force hdcp1.4 on the connector and
verify content protection.
V2: Use hdcp14 debugfs for all the supported subtests (Suraj).
v3: Create new separate subtests for hdcp1.4 and hdcp2.2 for all the
supported tests. (Suraj)
v4: Add -hdcp14 suffix for subtests only for cases explicitly
forcing hdcp1.4, retain original subtest names (eg atomic, type1)
for default behaviour. (Suraj)
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
tests/kms_content_protection.c | 154 ++++++++++++++++++++++++++++++---
1 file changed, 142 insertions(+), 12 deletions(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 51fc1d3be..4fa5d2c20 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -43,8 +43,8 @@
#include "igt_panel.h"
/**
- * SUBTEST: lic-type-0
- * Description: Test for the integrity of link for type-0 content.
+ * SUBTEST: lic-type-0-hdcp14
+ * Description: Test for the integrity of link for type-0 content with HDCP1.4.
*
* SUBTEST: lic-type-1
* Description: Test for the integrity of link for type-1 content.
@@ -65,6 +65,11 @@
* Description: Test to detect the HDCP status change when we are reading the
* uevent sent with the corresponding connector id and property id.
*
+ * SUBTEST: uevent-hdcp14
+ * Description: Test to detect the status change when we are reading the
+ * uevent sent with the corresponding connector id and property id
+ * with HDCP1.4 content protection.
+ *
* SUBTEST: %s
* Description: Test content protection with %arg[1]
*
@@ -74,6 +79,10 @@
* @atomic-dpms: DPMS ON/OFF during atomic modesetting.
* @legacy: legacy style commit
* @type1: content type 1 that can be handled only through HDCP2.2.
+ * @legacy-hdcp14: Test HDCP1.4 content protection with legacy style commit.
+ * @atomic-hdcp14: Test HDCP1.4 content protection with atomic modesetting.
+ * @atomic-dpms-hdcp14: Test HDCP1.4 content protection with atomic modesetting and DPMS.
+ *
*/
/**
@@ -83,8 +92,10 @@
* arg[1]:
*
* @lic-type-0: Type 0 with LIC
+ * @lic-type-0-hdcp14: Type 0 with LIC and HDCP1.4
* @lic-type-1: Type 1 with LIC.
* @type-0: Type 0
+ * @type-0-hdcp14: Type 0 with HDCP1.4
* @type-1: Type 1
*/
@@ -96,6 +107,7 @@ struct data {
struct igt_fb red, green;
unsigned int cp_tests;
struct udev_monitor *uevent_monitor;
+ bool is_force_hdcp14;
} data;
/* Test flags */
@@ -581,6 +593,51 @@ static bool output_hdcp_capable(igt_output_t *output, int content_type)
return true;
}
+static void set_i915_force_hdcp14(igt_output_t *output)
+{
+ int fd, ret;
+ char buf[MAX_SINK_HDCP_CAP_BUF_LEN];
+
+ fd = igt_debugfs_connector_dir(data.drm_fd, output->name, O_RDONLY);
+ igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name);
+
+ ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, sizeof(buf));
+ if (ret <= 0) {
+ igt_info("i915_force_hdcp14 not supported\n");
+ close(fd);
+ return;
+ }
+
+ ret = igt_sysfs_write(fd, "i915_force_hdcp14", "1", 2);
+ igt_require_f(ret > 0, "i915_force_hdcp14 is not enabled\n");
+
+ ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, sizeof(buf));
+ igt_assert_f(ret > 0 && strstr(buf, "yes"),
+ "i915_force_hdcp14 is not set to 'yes' on %s debugfs\n",
+ output->name);
+
+ close(fd);
+}
+
+static void reset_i915_force_hdcp14(igt_output_t *output)
+{
+ int fd, ret;
+ char buf[MAX_SINK_HDCP_CAP_BUF_LEN];
+
+ fd = igt_debugfs_connector_dir(data.drm_fd, output->name, O_RDONLY);
+ igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name);
+
+ ret = igt_sysfs_write(fd, "i915_force_hdcp14", "0", 2);
+ igt_require_f(ret > 0, "i915_force_hdcp14 is not disabled\n");
+
+ ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, sizeof(buf));
+ igt_assert_f(ret > 0 && strstr(buf, "no"),
+ "i915_force_hdcp14 is not set to 'no' on %s debugfs\n",
+ "i915_force_hdcp14");
+
+ close(fd);
+}
+
static void
test_fini(igt_output_t *output, enum igt_commit_style commit_style)
{
@@ -654,10 +711,15 @@ test_content_protection(enum igt_commit_style commit_style, int content_type)
output->name);
continue;
}
+ if (data.is_force_hdcp14)
+ set_i915_force_hdcp14(output);
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_content_protection_on_output(output, pipe, commit_style, content_type);
+ if (data.is_force_hdcp14)
+ reset_i915_force_hdcp14(output);
+
test_fini(output, commit_style);
/*
* Testing a output with a pipe is enough for HDCP
@@ -719,6 +781,11 @@ test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int valid_outputs
int retry_orig = retries, count, i;
bool ret;
+ if (data.is_force_hdcp14) {
+ for (count = 0; count < valid_outputs; count++)
+ set_i915_force_hdcp14(hdcp_mst_output[count]);
+ }
+
do {
if (retry_orig != retries)
test_mst_cp_disable(hdcp_mst_output, COMMIT_ATOMIC, valid_outputs);
@@ -752,6 +819,11 @@ test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int valid_outputs
igt_display_commit2(display, COMMIT_ATOMIC);
} while (retries && !ret);
+ if (data.is_force_hdcp14) {
+ for (count = 0; count < valid_outputs; count++)
+ reset_i915_force_hdcp14(hdcp_mst_output[count]);
+ }
+
igt_assert_f(ret, "Content Protection not enabled on MST outputs\n");
}
@@ -878,54 +950,84 @@ static void create_fbs(void)
0.f, 1.f, 0.f, &data.green);
}
+
+
static const struct {
const char *desc;
const char *name;
unsigned int cp_tests;
bool content_type;
+ bool is_force_hdcp14;
} subtests[] = {
+ { .desc = "Test content protection with atomic modesetting with HDCP1.4.",
+ .name = "atomic-hdcp14",
+ .cp_tests = 0,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
{ .desc = "Test content protection with atomic modesetting",
.name = "atomic",
.cp_tests = 0,
- .content_type = HDCP_CONTENT_TYPE_0
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
},
- { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting.",
+ { .desc = "Test content protection with DPMS ON/OFF during "
+ "atomic modesetting with HDCP1.4.",
+ .name = "atomic-dpms-hdcp14",
+ .cp_tests = CP_DPMS,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
+ },
+ { .desc = "Test content protection with DPMS ON/OFF during atomic modesetting",
.name = "atomic-dpms",
.cp_tests = CP_DPMS,
- .content_type = HDCP_CONTENT_TYPE_0
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
},
{ .desc = "Test for the integrity of link with type 0 content.",
- .name = "lic-type-0",
+ .name = "lic-type-0-hdcp14",
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
},
{ .desc = "Test for the integrity of link with type 1 content",
.name = "lic-type-1",
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_1,
+ .is_force_hdcp14 = false,
},
{ .desc = "Test content protection with content type 1 "
"that can be handled only through HDCP2.2.",
.name = "type1",
.cp_tests = 0,
.content_type = HDCP_CONTENT_TYPE_1,
+ .is_force_hdcp14 = false,
},
{ .desc = "Test the teardown and rebuild of the interface between "
"Intel and mei hdcp.",
.name = "mei-interface",
.cp_tests = CP_MEI_RELOAD,
.content_type = HDCP_CONTENT_TYPE_1,
+ .is_force_hdcp14 = false,
},
{ .desc = "Test the content type change when the content protection already enabled",
.name = "content-type-change",
.cp_tests = CP_TYPE_CHANGE,
.content_type = HDCP_CONTENT_TYPE_1,
},
- { .desc = "Test to detect the HDCP status change when we are reading the uevent "
+ {.desc = "Test to detect the HDCP status change when we are reading the uevent "
"sent with the corresponding connector id and property id.",
.name = "uevent",
.cp_tests = CP_UEVENT,
.content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
+ },
+ { .desc = "Test to detect the HDCP status change when we are reading the uevent "
+ "sent with the corresponding connector id and property id.",
+ .name = "uevent-hdcp14",
+ .cp_tests = CP_UEVENT,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
},
/*
* Testing the revocation check through SRM needs a HDCP sink with
@@ -940,6 +1042,7 @@ static const struct {
.name = "srm",
.cp_tests = 0,
.content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
},
};
@@ -948,26 +1051,43 @@ static const struct {
const char *name;
unsigned int cp_tests;
bool content_type;
+ bool is_force_hdcp14;
} mst_subtests[] = {
- { .desc = "Test Content protection(Type 0) over DP MST.",
+ { .desc = "Test Content protection(Type 0) over DP MST",
.name = "dp-mst-type-0",
.cp_tests = 0,
- .content_type = HDCP_CONTENT_TYPE_0
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
+ },
+ { .desc = "Test Content protection(Type 0) over DP MST with HDCP1.4.",
+ .name = "dp-mst-type-0-hdcp14",
+ .cp_tests = 0,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
},
{ .desc = "Test Content protection(Type 0) over DP MST with LIC.",
.name = "dp-mst-lic-type-0",
.cp_tests = CP_LIC,
- .content_type = HDCP_CONTENT_TYPE_0
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = false,
+ },
+ { .desc = "Test Content protection(Type 0) over DP MST with LIC.",
+ .name = "dp-mst-lic-type-0-hdcp14",
+ .cp_tests = CP_LIC,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ .is_force_hdcp14 = true,
},
{ .desc = "Test Content protection(Type 1) over DP MST.",
.name = "dp-mst-type-1",
.cp_tests = 0,
.content_type = HDCP_CONTENT_TYPE_1,
+ .is_force_hdcp14 = false,
},
{ .desc = "Test Content protection(Type 1) over DP MST with LIC.",
.name = "dp-mst-lic-type-1",
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_1,
+ .is_force_hdcp14 = false,
},
};
@@ -980,12 +1100,20 @@ igt_main
create_fbs();
}
- igt_describe("Test content protection with legacy style commit.");
- igt_subtest_with_dynamic("legacy") {
+ igt_describe("Test content protection with legacy style commit with HDCP1.4");
+ igt_subtest_with_dynamic("legacy-hdcp14") {
data.cp_tests = 0;
+ data.is_force_hdcp14 = true;
test_content_protection(COMMIT_LEGACY, HDCP_CONTENT_TYPE_0);
}
+ igt_describe("Test content protection with legacy style commit with HDCP2.2");
+ igt_subtest_with_dynamic("legacy") {
+ data.cp_tests = 0;
+ data.is_force_hdcp14 = false;
+ test_content_protection(COMMIT_LEGACY, HDCP_CONTENT_TYPE_1);
+ }
+
igt_subtest_group {
igt_fixture
igt_require(data.display.is_atomic);
@@ -995,6 +1123,7 @@ igt_main
igt_subtest_with_dynamic(subtests[i].name) {
data.cp_tests = subtests[i].cp_tests;
+ data.is_force_hdcp14 = subtests[i].is_force_hdcp14;
if (!strcmp(subtests[i].name, "srm")) {
bool ret;
@@ -1018,6 +1147,7 @@ igt_main
igt_subtest(mst_subtests[i].name) {
data.cp_tests = mst_subtests[i].cp_tests;
+ data.is_force_hdcp14 = mst_subtests[i].is_force_hdcp14;
test_content_protection_mst(mst_subtests[i].content_type);
}
}
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Xe.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati @ 2025-07-09 16:02 ` Patchwork 2025-07-09 16:05 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-09 16:02 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1646 bytes --] == Series Details == Series: tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) URL : https://patchwork.freedesktop.org/series/148128/ State : success == Summary == CI Bug Log - changes from XEIGT_8447_BAT -> XEIGTPW_13440_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_13440_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-plain-flip@d-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 Build changes ------------- * IGT: IGT_8447 -> IGTPW_13440 * Linux: xe-3373-572882b22b077b1ef991abbe423d8c4bcb9d4a99 -> xe-3383-0cc3f2731cb8e77b27ffb7f361407fd240276ed5 IGTPW_13440: b3ade10d953bfd9c9bda140ebc2a0a5e9fd100da @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8447: 8447 xe-3373-572882b22b077b1ef991abbe423d8c4bcb9d4a99: 572882b22b077b1ef991abbe423d8c4bcb9d4a99 xe-3383-0cc3f2731cb8e77b27ffb7f361407fd240276ed5: 0cc3f2731cb8e77b27ffb7f361407fd240276ed5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/index.html [-- Attachment #2: Type: text/html, Size: 2222 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati 2025-07-09 16:02 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) Patchwork @ 2025-07-09 16:05 ` Patchwork 2025-07-09 18:55 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-09 16:05 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3929 bytes --] == Series Details == Series: tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) URL : https://patchwork.freedesktop.org/series/148128/ State : success == Summary == CI Bug Log - changes from IGT_8447 -> IGTPW_13440 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13440 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-plain-flip@c-dp1: - bat-apl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/bat-apl-1/igt@kms_flip@basic-plain-flip@c-dp1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/bat-apl-1/igt@kms_flip@basic-plain-flip@c-dp1.html * igt@kms_hdmi_inject@inject-audio: - fi-tgl-1115g4: [PASS][3] -> [FAIL][4] ([i915#13930]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html #### Possible fixes #### * igt@i915_module_load@load: - bat-mtlp-9: [DMESG-WARN][5] ([i915#13494]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/bat-mtlp-9/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/bat-mtlp-9/igt@i915_module_load@load.html #### Warnings #### * igt@dmabuf@all-tests: - fi-pnv-d510: [ABORT][7] ([i915#14592]) -> [ABORT][8] ([i915#12904]) +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/fi-pnv-d510/igt@dmabuf@all-tests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/fi-pnv-d510/igt@dmabuf@all-tests.html * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][9] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][10] ([i915#12061] / [i915#14204]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/bat-atsm-1/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][11] ([i915#13929]) -> [DMESG-FAIL][12] ([i915#14204]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8447/bat-atsm-1/igt@i915_selftest@live@mman.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#13930]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13930 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#14592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14592 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8447 -> IGTPW_13440 * Linux: CI_DRM_16826 -> CI_DRM_16836 CI-20190529: 20190529 CI_DRM_16826: 979c7404b39440741bb47c65938cb260bb76ccf4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16836: 8cbc0224847589e88bb3ea0c00952c51e00f5bd6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13440: b3ade10d953bfd9c9bda140ebc2a0a5e9fd100da @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8447: 8447 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/index.html [-- Attachment #2: Type: text/html, Size: 4889 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati 2025-07-09 16:02 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) Patchwork 2025-07-09 16:05 ` ✓ i915.CI.BAT: " Patchwork @ 2025-07-09 18:55 ` Patchwork 2025-07-09 19:06 ` ✓ i915.CI.Full: success " Patchwork 2025-07-11 5:51 ` [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Kandpal, Suraj 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-09 18:55 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100061 bytes --] == Series Details == Series: tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) URL : https://patchwork.freedesktop.org/series/148128/ State : failure == Summary == CI Bug Log - changes from XEIGT_8447_FULL -> XEIGTPW_13440_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13440_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13440_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 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13440_FULL: ### IGT changes ### #### Possible regressions #### * {igt@kms_content_protection@dp-mst-lic-type-0-hdcp14} (NEW): - shard-bmg: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * {igt@kms_content_protection@dp-mst-type-0-hdcp14} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * {igt@kms_content_protection@legacy-hdcp14} (NEW): - shard-lnl: NOTRUN -> [SKIP][3] +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-2/igt@kms_content_protection@legacy-hdcp14.html * {igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2} (NEW): - shard-bmg: NOTRUN -> [FAIL][4] +9 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * {igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-4} (NEW): - shard-dg2-set2: NOTRUN -> [FAIL][5] +5 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-4.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-6.html New tests --------- New tests have been introduced between XEIGT_8447_FULL and XEIGTPW_13440_FULL: ### New IGT tests (15) ### * igt@kms_content_protection@atomic-dpms-hdcp14: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [2.46, 113.10] s * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - Statuses : 1 fail(s) - Exec time: [112.13] s * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-4: - Statuses : 1 fail(s) - Exec time: [112.30] s * igt@kms_content_protection@atomic-hdcp14: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [2.53, 112.75] s * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2: - Statuses : 1 fail(s) - Exec time: [111.90] s * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-4: - Statuses : 1 fail(s) - Exec time: [112.03] s * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_content_protection@dp-mst-type-0-hdcp14: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_content_protection@legacy-hdcp14: - Statuses : 1 fail(s) 2 skip(s) - Exec time: [0.0, 113.93] s * igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2: - Statuses : 1 fail(s) - Exec time: [111.96] s * igt@kms_content_protection@lic-type-0-hdcp14: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [2.47, 113.06] s * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - Statuses : 1 fail(s) - Exec time: [112.45] s * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-4: - Statuses : 1 fail(s) - Exec time: [112.26] s * igt@kms_content_protection@uevent-hdcp14: - Statuses : 1 fail(s) 2 skip(s) - Exec time: [0.0, 35.09] s * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2: - Statuses : 1 fail(s) - Exec time: [34.46] s Known issues ------------ Here are the changes found in XEIGTPW_13440_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@unaligned-read: - shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#2134]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@fbdev@unaligned-read.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@fbdev@unaligned-read.html * igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries: - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#4208] / [Intel XE#4618]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#911]) +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#873]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#4208] / [i915#2575]) +17 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_atomic@plane-invalid-params-fence.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#367]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#3442]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +160 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3124]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#1727] / [Intel XE#3113]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#306]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2252]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#373]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][47] ([Intel XE#1188]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2291]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#5354]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2291]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#323]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#323]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2286]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#4302]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#1340]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2244]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#2316]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@absolute-wf_vblank: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#4208] / [i915#2575]) +88 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_flip@absolute-wf_vblank.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [INCOMPLETE][71] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2380]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#455]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#651]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2312]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2311]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][77] -> [SKIP][78] ([Intel XE#2351] / [Intel XE#4208]) +12 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#5390]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#656]) +8 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +12 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#658]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#5426]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2313]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#653]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [PASS][86] -> [INCOMPLETE][87] ([Intel XE#5383]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#3012]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#599]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2393]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [FAIL][92] ([Intel XE#4658]) +3 other tests fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#870]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#718]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2505]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#908]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html - shard-lnl: NOTRUN -> [FAIL][98] ([Intel XE#2029]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1439] / [Intel XE#3141]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2893]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4608]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2387]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1122]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1128]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-render: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1406]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-2/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [PASS][110] -> [SKIP][111] ([Intel XE#4692]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [FAIL][112] ([Intel XE#4689]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2413]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1499]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_vrr@flip-basic.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1280] / [Intel XE#455]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_configfs@survivability-mode: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#5249]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@xe_configfs@survivability-mode.html * igt@xe_eudebug@sysfs-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#4837]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_eudebug@sysfs-toggle.html - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-4/igt@xe_eudebug@sysfs-toggle.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4837]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@xe_eudebug_online@single-step-one.html * igt@xe_evict@evict-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#688]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@xe_evict@evict-large-external-cm.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][121] -> [SKIP][122] ([Intel XE#4208]) +206 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1392]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2322]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1392]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-4/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][126] -> [SKIP][127] ([Intel XE#1392]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#288]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#4208]) +73 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#4943]) +9 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#4943]) +10 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@process-many-execqueues-new-race-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#4915]) +73 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_exec_system_allocator@process-many-execqueues-new-race-nomemset.html * igt@xe_module_load@reload: - shard-dg2-set2: [PASS][133] -> [FAIL][134] ([Intel XE#4208]) +1 other test fail [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@xe_module_load@reload.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_module_load@reload.html * igt@xe_oa@non-sampling-read-error: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2541] / [Intel XE#3573]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_oa@non-sampling-read-error.html * igt@xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_oa@syncs-syncobj-cfg.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][137] ([Intel XE#1173]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#579]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#584]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@xe_pm_residency@cpg-basic.html * igt@xe_sriov_scheduling@equal-throughput: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#4351]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput.html - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#4351]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@fbdev@unaligned-write: - shard-dg2-set2: [SKIP][142] ([Intel XE#2134]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@fbdev@unaligned-write.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@fbdev@unaligned-write.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [FAIL][144] ([Intel XE#911]) -> [PASS][145] +3 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_async_flips@test-time-stamp: - shard-dg2-set2: [FAIL][146] ([Intel XE#5445]) -> [PASS][147] +1 other test pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_async_flips@test-time-stamp.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_async_flips@test-time-stamp.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][148] ([Intel XE#2291]) -> [PASS][149] +5 other tests pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][150] ([Intel XE#4633]) -> [PASS][151] +1 other test pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][152] ([Intel XE#2373]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_feature_discovery@display-2x.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][154] ([Intel XE#2316]) -> [PASS][155] +7 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][156] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][157] +8 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: [SKIP][158] ([Intel XE#4208] / [i915#2575]) -> [PASS][159] +99 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_lease@lease-invalid-crtc.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_lease@lease-invalid-crtc.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [SKIP][160] ([Intel XE#4596]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][162] ([Intel XE#2571]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][164] ([Intel XE#718]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][166] ([Intel XE#2883]) -> [PASS][167] +2 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_setmode@basic.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][168] ([Intel XE#1435]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][170] ([Intel XE#2142]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-dg2-set2: [SKIP][172] ([Intel XE#1392]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@once-rebind: - shard-dg2-set2: [SKIP][174] ([Intel XE#4208]) -> [PASS][175] +193 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_exec_basic@once-rebind.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@xe_exec_basic@once-rebind.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [FAIL][176] ([Intel XE#5018]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [FAIL][178] ([Intel XE#4208]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_module_load@reload-no-display.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_module_load@reload-no-display.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: [SKIP][180] ([Intel XE#4208] / [i915#2575]) -> [SKIP][181] ([Intel XE#3768]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_async_flips@invalid-async-flip-atomic.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][182] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][183] ([Intel XE#316]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][184] ([Intel XE#316]) -> [SKIP][185] ([Intel XE#2351] / [Intel XE#4208]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][186] ([Intel XE#316]) -> [SKIP][187] ([Intel XE#4208]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][188] ([Intel XE#4208]) -> [SKIP][189] ([Intel XE#316]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][190] ([Intel XE#607]) -> [SKIP][191] ([Intel XE#2351] / [Intel XE#4208]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][192] ([Intel XE#1124]) -> [SKIP][193] ([Intel XE#4208]) +7 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][194] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][195] ([Intel XE#1124]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][196] ([Intel XE#1124]) -> [SKIP][197] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][198] ([Intel XE#4208]) -> [SKIP][199] ([Intel XE#1124]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][200] ([Intel XE#4208] / [i915#2575]) -> [SKIP][201] ([Intel XE#2191]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][202] ([Intel XE#2191]) -> [SKIP][203] ([Intel XE#4208] / [i915#2575]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][204] ([Intel XE#4208] / [i915#2575]) -> [SKIP][205] ([Intel XE#367]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][206] ([Intel XE#367]) -> [SKIP][207] ([Intel XE#4208] / [i915#2575]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][208] ([Intel XE#2907]) -> [SKIP][209] ([Intel XE#4208]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][210] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][211] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][212] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][213] ([Intel XE#4208]) +12 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][214] ([Intel XE#4208]) -> [SKIP][215] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][216] ([Intel XE#4208]) -> [SKIP][217] ([Intel XE#2907]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][218] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][219] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][220] ([Intel XE#4418]) -> [SKIP][221] ([Intel XE#2351] / [Intel XE#4208]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][222] ([Intel XE#306]) -> [SKIP][223] ([Intel XE#4208] / [i915#2575]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@kms_chamelium_color@ctm-0-75.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-max: - shard-dg2-set2: [SKIP][224] ([Intel XE#4208] / [i915#2575]) -> [SKIP][225] ([Intel XE#306]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_chamelium_color@ctm-max.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][226] ([Intel XE#4208] / [i915#2575]) -> [SKIP][227] ([Intel XE#373]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][228] ([Intel XE#373]) -> [SKIP][229] ([Intel XE#4208] / [i915#2575]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][230] ([Intel XE#4208] / [i915#2575]) -> [SKIP][231] ([Intel XE#307]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][232] ([Intel XE#1178]) -> [SKIP][233] ([Intel XE#2341]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-1/igt@kms_content_protection@legacy.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-1/igt@kms_content_protection@legacy.html - shard-dg2-set2: [FAIL][234] ([Intel XE#1178]) -> [SKIP][235] ([Intel XE#455]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_content_protection@legacy.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][236] ([Intel XE#4208] / [i915#2575]) -> [SKIP][237] ([Intel XE#455]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_content_protection@lic-type-1.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][238] ([Intel XE#2341]) -> [FAIL][239] ([Intel XE#1178]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-6/igt@kms_content_protection@srm.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][240] ([Intel XE#308]) -> [SKIP][241] ([Intel XE#4208] / [i915#2575]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2-set2: [SKIP][242] ([Intel XE#4354]) -> [SKIP][243] ([Intel XE#4208]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-dg2-set2: [SKIP][244] ([Intel XE#4208]) -> [SKIP][245] ([Intel XE#4356]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_dp_link_training@uhbr-mst.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][246] ([Intel XE#4208]) -> [SKIP][247] ([Intel XE#776]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][248] ([Intel XE#703]) -> [SKIP][249] ([Intel XE#4208] / [i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_feature_discovery@display-3x.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][250] ([Intel XE#1135]) -> [SKIP][251] ([Intel XE#4208] / [i915#2575]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_feature_discovery@psr2.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_feature_discovery@psr2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-set2: [SKIP][252] ([Intel XE#4208]) -> [SKIP][253] ([Intel XE#455]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][254] ([Intel XE#455]) -> [SKIP][255] ([Intel XE#4208]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-set2: [SKIP][256] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][257] ([Intel XE#455]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][258] ([Intel XE#2312]) -> [SKIP][259] ([Intel XE#2311]) +16 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][260] ([Intel XE#2311]) -> [SKIP][261] ([Intel XE#2312]) +16 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][262] ([Intel XE#5390]) -> [SKIP][263] ([Intel XE#2312]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][264] ([Intel XE#2312]) -> [SKIP][265] ([Intel XE#5390]) +10 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][266] ([Intel XE#4208]) -> [SKIP][267] ([Intel XE#651]) +21 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][268] ([Intel XE#651]) -> [SKIP][269] ([Intel XE#2351] / [Intel XE#4208]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][270] ([Intel XE#651]) -> [SKIP][271] ([Intel XE#4208]) +22 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][272] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][273] ([Intel XE#651]) +5 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][274] ([Intel XE#653]) -> [SKIP][275] ([Intel XE#4208]) +25 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#2313]) +14 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][278] ([Intel XE#653]) -> [SKIP][279] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][280] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][281] ([Intel XE#653]) +7 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][282] ([Intel XE#2313]) -> [SKIP][283] ([Intel XE#2312]) +17 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][284] ([Intel XE#4208]) -> [SKIP][285] ([Intel XE#653]) +20 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: [SKIP][286] ([Intel XE#4298]) -> [SKIP][287] ([Intel XE#4208]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@kms_joiner@basic-max-non-joiner.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][288] ([Intel XE#346]) -> [SKIP][289] ([Intel XE#4208]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: [SKIP][290] ([Intel XE#4208]) -> [SKIP][291] ([Intel XE#2925]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][292] ([Intel XE#4596]) -> [SKIP][293] ([Intel XE#5021]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][294] ([Intel XE#5020]) -> [SKIP][295] ([Intel XE#4208] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][296] ([Intel XE#4208]) -> [SKIP][297] ([Intel XE#870]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][298] ([Intel XE#2938]) -> [SKIP][299] ([Intel XE#4208]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][300] ([Intel XE#4208]) -> [SKIP][301] ([Intel XE#1129]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][302] ([Intel XE#908]) -> [SKIP][303] ([Intel XE#2351] / [Intel XE#4208]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][304] ([Intel XE#1489]) -> [SKIP][305] ([Intel XE#4208]) +12 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][306] ([Intel XE#4208]) -> [SKIP][307] ([Intel XE#1489]) +10 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][308] ([Intel XE#1122]) -> [SKIP][309] ([Intel XE#4208]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][310] ([Intel XE#4208]) -> [SKIP][311] ([Intel XE#1122]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_psr2_su@page_flip-xrgb8888.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][312] ([Intel XE#4208]) -> [SKIP][313] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-dpms: - shard-dg2-set2: [SKIP][314] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][315] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@kms_psr@pr-dpms.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-sprite-plane-move: - shard-dg2-set2: [SKIP][316] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][317] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_psr@psr-sprite-plane-move.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: [SKIP][318] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][319] ([Intel XE#4208]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@kms_psr@psr2-basic.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][320] ([Intel XE#3414]) -> [SKIP][321] ([Intel XE#4208] / [i915#2575]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][322] ([Intel XE#4208] / [i915#2575]) -> [SKIP][323] ([Intel XE#1127]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][324] ([Intel XE#4208] / [i915#2575]) -> [SKIP][325] ([Intel XE#3414]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][326] ([Intel XE#1729]) -> [SKIP][327] ([Intel XE#4208] / [i915#2575]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][328] ([Intel XE#4208] / [i915#2575]) -> [SKIP][329] ([Intel XE#2168]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@kms_vrr@cmrr.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@kms_vrr@cmrr.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][330] ([Intel XE#455]) -> [SKIP][331] ([Intel XE#4208] / [i915#2575]) +10 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@kms_vrr@flipline.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@kms_vrr@flipline.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][332] ([Intel XE#4208]) -> [SKIP][333] ([Intel XE#1280] / [Intel XE#455]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][334] ([Intel XE#1123]) -> [SKIP][335] ([Intel XE#4208]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][336] ([Intel XE#1126]) -> [SKIP][337] ([Intel XE#4208]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x3fff.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eu_stall@invalid-event-report-count: - shard-dg2-set2: [SKIP][338] ([Intel XE#5419]) -> [SKIP][339] ([Intel XE#4208]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@xe_eu_stall@invalid-event-report-count.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_eu_stall@invalid-event-report-count.html * igt@xe_eu_stall@invalid-sampling-rate: - shard-dg2-set2: [SKIP][340] ([Intel XE#4208]) -> [SKIP][341] ([Intel XE#5419]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_eu_stall@invalid-sampling-rate.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_eu_stall@invalid-sampling-rate.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][342] ([Intel XE#4837]) -> [SKIP][343] ([Intel XE#4208]) +17 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_eudebug@basic-close.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@vma-ufence-faultable: - shard-dg2-set2: [SKIP][344] ([Intel XE#4208]) -> [SKIP][345] ([Intel XE#4837]) +14 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_eudebug@vma-ufence-faultable.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_eudebug@vma-ufence-faultable.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-dg2-set2: [SKIP][346] ([Intel XE#4208]) -> [SKIP][347] ([Intel XE#4518]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][348] ([Intel XE#1392]) -> [SKIP][349] ([Intel XE#4208]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][350] ([Intel XE#4208]) -> [SKIP][351] ([Intel XE#288]) +20 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][352] ([Intel XE#288]) -> [SKIP][353] ([Intel XE#4208]) +23 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][354] ([Intel XE#2360]) -> [SKIP][355] ([Intel XE#4208]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_system_allocator@many-large-malloc-nomemset: - shard-dg2-set2: [SKIP][356] ([Intel XE#4915]) -> [SKIP][357] ([Intel XE#4208]) +287 other tests skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck: - shard-dg2-set2: [SKIP][358] ([Intel XE#4208]) -> [SKIP][359] ([Intel XE#4915]) +252 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html * igt@xe_exec_threads@threads-hang-userptr-rebind: - shard-dg2-set2: [DMESG-WARN][360] ([Intel XE#3876]) -> [SKIP][361] ([Intel XE#4208]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@xe_exec_threads@threads-hang-userptr-rebind.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_exec_threads@threads-hang-userptr-rebind.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][362] ([Intel XE#4208]) -> [SKIP][363] ([Intel XE#560]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_media_fill@media-fill.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_media_fill@media-fill.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: [SKIP][364] ([Intel XE#4208]) -> [SKIP][365] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_oa@missing-sample-flags.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_oa@missing-sample-flags.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][366] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][367] ([Intel XE#4208]) +3 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: [SKIP][368] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) -> [SKIP][369] ([Intel XE#4208]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_oa@syncs-ufence-wait-cfg.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: [SKIP][370] ([Intel XE#4208]) -> [SKIP][371] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][372] ([Intel XE#979]) -> [SKIP][373] ([Intel XE#4208]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read: - shard-dg2-set2: [FAIL][374] ([Intel XE#1173]) -> [SKIP][375] ([Intel XE#1061] / [Intel XE#4208]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-464/igt@xe_peer2peer@read.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_peer2peer@read.html * igt@xe_peer2peer@write: - shard-dg2-set2: [SKIP][376] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][377] ([Intel XE#1173]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_peer2peer@write.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][378] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][379] ([Intel XE#4208]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][380] ([Intel XE#4208]) -> [SKIP][381] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pmu@fn-engine-activity-load: - shard-dg2-set2: [SKIP][382] ([Intel XE#4650]) -> [SKIP][383] ([Intel XE#4208]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-435/igt@xe_pmu@fn-engine-activity-load.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_pxp@display-pxp-fb: - shard-dg2-set2: [SKIP][384] ([Intel XE#4208]) -> [SKIP][385] ([Intel XE#4733]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_pxp@display-pxp-fb.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-435/igt@xe_pxp@display-pxp-fb.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-dg2-set2: [SKIP][386] ([Intel XE#4733]) -> [SKIP][387] ([Intel XE#4208]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-432/igt@xe_pxp@pxp-stale-queue-post-suspend.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_pxp@pxp-stale-queue-post-suspend.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][388] ([Intel XE#4208]) -> [SKIP][389] ([Intel XE#944]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_query@multigpu-query-engines.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][390] ([Intel XE#944]) -> [SKIP][391] ([Intel XE#4208]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@xe_query@multigpu-query-mem-usage.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_render_copy@render-stress-4-copies: - shard-dg2-set2: [SKIP][392] ([Intel XE#4208]) -> [SKIP][393] ([Intel XE#4814]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_render_copy@render-stress-4-copies.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-432/igt@xe_render_copy@render-stress-4-copies.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-dg2-set2: [SKIP][394] ([Intel XE#4130]) -> [SKIP][395] ([Intel XE#4208]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-basic.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][396] ([Intel XE#4208]) -> [SKIP][397] ([Intel XE#3342]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-dg2-set2: [SKIP][398] ([Intel XE#4208]) -> [SKIP][399] ([Intel XE#4273]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8447/shard-dg2-436/igt@xe_sriov_flr@flr-vfs-parallel.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/shard-dg2-466/igt@xe_sriov_flr@flr-vfs-parallel.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4618 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658 [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5383 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419 [Intel XE#5426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5426 [Intel XE#5445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5445 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8447 -> IGTPW_13440 * Linux: xe-3373-572882b22b077b1ef991abbe423d8c4bcb9d4a99 -> xe-3383-0cc3f2731cb8e77b27ffb7f361407fd240276ed5 IGTPW_13440: b3ade10d953bfd9c9bda140ebc2a0a5e9fd100da @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8447: 8447 xe-3373-572882b22b077b1ef991abbe423d8c4bcb9d4a99: 572882b22b077b1ef991abbe423d8c4bcb9d4a99 xe-3383-0cc3f2731cb8e77b27ffb7f361407fd240276ed5: 0cc3f2731cb8e77b27ffb7f361407fd240276ed5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13440/index.html [-- Attachment #2: Type: text/html, Size: 125744 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati ` (2 preceding siblings ...) 2025-07-09 18:55 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-07-09 19:06 ` Patchwork 2025-07-11 5:51 ` [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Kandpal, Suraj 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-09 19:06 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 171118 bytes --] == Series Details == Series: tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) URL : https://patchwork.freedesktop.org/series/148128/ State : success == Summary == CI Bug Log - changes from CI_DRM_16836_full -> IGTPW_13440_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13440_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_content_protection@atomic-hdcp14} (NEW): - shard-dg1: NOTRUN -> [SKIP][1] +6 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@kms_content_protection@atomic-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][2] +5 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-5/igt@kms_content_protection@atomic-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][3] +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-3/igt@kms_content_protection@atomic-hdcp14.html * {igt@kms_content_protection@dp-mst-lic-type-0-hdcp14} (NEW): - shard-rkl: NOTRUN -> [SKIP][4] +6 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * {igt@kms_content_protection@dp-mst-type-0-hdcp14} (NEW): - shard-dg2-9: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * {igt@kms_content_protection@legacy-hdcp14} (NEW): - shard-dg2: NOTRUN -> [SKIP][7] +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_content_protection@legacy-hdcp14.html New tests --------- New tests have been introduced between CI_DRM_16836_full and IGTPW_13440_full: ### New IGT tests (7) ### * igt@kms_content_protection@atomic-dpms-hdcp14: - Statuses : 7 skip(s) - Exec time: [0.14, 3.42] s * igt@kms_content_protection@atomic-hdcp14: - Statuses : 6 skip(s) - Exec time: [0.13, 3.31] s * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_content_protection@dp-mst-type-0-hdcp14: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_content_protection@legacy-hdcp14: - Statuses : 6 skip(s) - Exec time: [0.49, 3.81] s * igt@kms_content_protection@lic-type-0-hdcp14: - Statuses : 6 skip(s) - Exec time: [0.22, 3.35] s * igt@kms_content_protection@uevent-hdcp14: - Statuses : 7 skip(s) - Exec time: [0.23, 3.40] s Known issues ------------ Here are the changes found in IGTPW_13440_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@device_reset@cold-reset-bound.html - shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@device_reset@cold-reset-bound.html * igt@fbdev@eof: - shard-rkl: [PASS][12] -> [SKIP][13] ([i915#14544] / [i915#2582]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@fbdev@eof.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@fbdev@eof.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-rkl: [PASS][18] -> [DMESG-WARN][19] ([i915#12917] / [i915#12964]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_caching@writes.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#7697]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html - shard-dg2-9: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#7697]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#14544] / [i915#6335]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@hog-create: - shard-rkl: [PASS][25] -> [DMESG-WARN][26] ([i915#12964]) +34 other tests dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@gem_create@hog-create.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@gem_create@hog-create.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg2: NOTRUN -> [FAIL][33] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][34] ([i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][35] -> [FAIL][36] ([i915#5784]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-19/igt@gem_eio@reset-stress.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-19/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#8555]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2-9: NOTRUN -> [FAIL][41] ([i915#11965]) +4 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#3281]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_gtt_cpu_tlb.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-5/igt@gem_gtt_cpu_tlb.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][62] -> [TIMEOUT][63] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][64] -> [TIMEOUT][65] ([i915#5493]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@big-copy-xy: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4077]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_mmap_gtt@big-copy-xy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#4083]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@gem_mmap_wc@set-cache-level.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@gem_partial_pwrite_pread@write-snoop.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@display: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@gem_pread@display.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#13398]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: [PASS][81] -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) +1 other test timeout [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4885]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_softpin@noreloc-s3: - shard-glk11: NOTRUN -> [INCOMPLETE][87] ([i915#13809]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk11/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][90] ([i915#3323]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#3282] / [i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#13356]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk8/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#14544] / [i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#14123]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11527]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#14073]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#14073]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-12/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#14118]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6412]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#8399]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][111] -> [FAIL][112] ([i915#12942]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][113] ([i915#13790] / [i915#2681]) +1 other test warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#11681]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@i915_pm_rps@thresholds.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][118] ([i915#12061]) +1 other test dmesg-fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@i915_selftest@live@workarounds.html - shard-mtlp: [PASS][119] -> [DMESG-FAIL][120] ([i915#12061]) +1 other test dmesg-fail [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-8/igt@i915_selftest@live@workarounds.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-3/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4077]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-rkl: [PASS][122] -> [INCOMPLETE][123] ([i915#4817]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@i915_suspend@forcewake.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#7707]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#12454] / [i915#12712]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5286]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#5286]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#5138]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][134] +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +11 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][140] +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +145 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +40 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +145 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +14 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12805]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#6095]) +16 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#12313]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#12313]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#12313]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +34 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#12313]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +59 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#14098] / [i915#6095]) +38 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#13781]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-8/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#13783]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][163] +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_chamelium_edid@dp-mode-timings.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_color@ctm-negative: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12655] / [i915#14544]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_color@ctm-negative.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#9979]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-8/igt@kms_color@deep-color.html * igt@kms_color@legacy-gamma-reset: - shard-rkl: [PASS][170] -> [SKIP][171] ([i915#12655] / [i915#14544]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_color@legacy-gamma-reset.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][172] ([i915#7173]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3116]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3299]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3116] / [i915#3299]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118] / [i915#9424]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#9424]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#7118]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_content_protection@type1.html - shard-dg2-9: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#7118] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#7116] / [i915#9424]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-15/igt@kms_content_protection@uevent.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][187] -> [FAIL][188] ([i915#13566]) +2 other tests fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: NOTRUN -> [FAIL][189] ([i915#13566]) +3 other tests fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#13049]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#13049]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#13049]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][197] ([i915#13566]) +3 other tests fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#3555]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-64x64@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][199] ([i915#12964]) +9 other tests dmesg-warn [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-b-hdmi-a-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][200] +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#13046] / [i915#5354]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#4103]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - shard-rkl: [PASS][204] -> [SKIP][205] ([i915#11190] / [i915#14544]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#14544]) +25 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg1: NOTRUN -> [SKIP][208] +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#13046] / [i915#5354]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-rkl: [PASS][210] -> [FAIL][211] ([i915#2346]) +1 other test fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#4103] / [i915#4213]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9833]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#13691]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3804]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#13748]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-10/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#13707]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#13707]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#8812]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3840] / [i915#9688]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#9878]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3469]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#2065] / [i915#4854]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#9337]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#3637] / [i915#9934]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-9: NOTRUN -> [SKIP][232] ([i915#9934]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9934]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#9934]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-15/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3637] / [i915#9934]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#9934]) +13 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [PASS][238] -> [FAIL][239] ([i915#10826]) +1 other test fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_flip@basic-flip-vs-wf_vblank.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544] / [i915#3637]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#8381]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-rkl: [PASS][242] -> [SKIP][243] ([i915#14544] / [i915#3637]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_flip@flip-vs-panning-vs-hang.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [PASS][244] -> [DMESG-WARN][245] ([i915#4423]) +1 other test dmesg-warn [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#14544] / [i915#3555]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#5190]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/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-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#2672]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#2672]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][263] -> [FAIL][264] ([i915#6880]) +2 other tests fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][265] -> [SKIP][266] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8708]) +22 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#14544] / [i915#1849] / [i915#5354]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8708]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][271] +54 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][272] ([i915#8708]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5354]) +33 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#5439]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#10055]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3458]) +16 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#1825]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3023]) +12 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][279] ([i915#3458]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#3458]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#1825]) +12 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#5354]) +13 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][283] +85 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch: - shard-dg2: [PASS][284] -> [SKIP][285] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-11/igt@kms_hdr@bpc-switch.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-htotal: - shard-rkl: [PASS][291] -> [SKIP][292] ([i915#14544] / [i915#3555] / [i915#8826]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_invalid_mode@bad-htotal.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_invalid_mode@bad-htotal.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544] / [i915#3555] / [i915#8826]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#10656]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#12394]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#12388]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#12394]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#13522]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#1839]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#6301]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - shard-glk11: NOTRUN -> [SKIP][301] ([i915#11190]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][302] ([i915#10647] / [i915#12169]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][303] ([i915#10647]) +1 other test fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2-9: NOTRUN -> [SKIP][304] ([i915#13958]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#13958]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#13958]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#13958]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#13958]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#14259]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: [PASS][311] -> [SKIP][312] ([i915#14544] / [i915#8152]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@kms_plane_scaling@invalid-parameters.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#12247] / [i915#6953] / [i915#9423]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#12247]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: [PASS][315] -> [SKIP][316] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#12247] / [i915#14544]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#12247]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#14544] / [i915#6953] / [i915#8152]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#3555]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9812]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9812]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#9685]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][330] ([i915#9295]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#3828]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg2-9: NOTRUN -> [SKIP][332] ([i915#9340]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#8430]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][334] ([i915#8430]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#9519]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9519]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][339] -> [SKIP][340] ([i915#14544] / [i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#9519]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#6524] / [i915#6805]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#11520]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][344] ([i915#11520]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#11520]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#12316]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#11520]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][348] ([i915#11520]) +7 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2-9: NOTRUN -> [SKIP][349] ([i915#11520]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][350] ([i915#11520]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#11520]) +10 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-8/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][352] ([i915#11520]) +11 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#9683]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#9683]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-suspend: - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#9688]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-4/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +8 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][359] +305 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +9 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html - shard-dg1: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +9 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9732]) +21 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-10/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +21 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#4077] / [i915#9688]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-8/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#9732]) +12 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-9: NOTRUN -> [SKIP][366] ([i915#9685]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-9: NOTRUN -> [SKIP][367] ([i915#12755]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@cursor-rotation-180: - shard-glk11: NOTRUN -> [SKIP][368] +83 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk11/igt@kms_rotation_crc@cursor-rotation-180.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#5289]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-9: NOTRUN -> [SKIP][371] ([i915#5190]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic: - shard-snb: [PASS][373] -> [FAIL][374] ([i915#5465]) +2 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-snb1/igt@kms_setmode@basic.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-snb7/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#8623]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-dg2-9: NOTRUN -> [SKIP][377] ([i915#3555]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][378] ([i915#3555]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-2/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#3555] / [i915#8808]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-8/igt@kms_vrr@flip-suspend.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3555]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-17/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#11920]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg2-9: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][384] ([i915#2437]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk8/igt@kms_writeback@writeback-check-output.html - shard-dg2: NOTRUN -> [SKIP][385] ([i915#2437]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#14544] / [i915#2437]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-7/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2-9: NOTRUN -> [SKIP][388] ([i915#2437] / [i915#9412]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#2434]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@perf@mi-rpc.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][390] -> [FAIL][391] ([i915#4349]) +5 other tests fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [FAIL][392] ([i915#4349]) +5 other tests fail [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [PASS][393] -> [FAIL][394] ([i915#4349]) +3 other tests fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@perf_pmu@module-unload: - shard-tglu: NOTRUN -> [FAIL][395] ([i915#14433]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-10/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#8516]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2-9: NOTRUN -> [SKIP][397] ([i915#14121]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708]) +2 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#9917]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7: - shard-tglu-1: NOTRUN -> [FAIL][401] ([i915#12910]) +9 other tests fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][402] ([i915#12910]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2-9: NOTRUN -> [SKIP][403] ([i915#9917]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sysfs_timeslice_duration@idempotent@vcs0: - shard-snb: NOTRUN -> [SKIP][404] +42 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-snb7/igt@sysfs_timeslice_duration@idempotent@vcs0.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][405] ([i915#13356]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-6/igt@gem_ccs@suspend-resume.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@gem_ccs@suspend-resume.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][407] ([i915#12964]) -> [PASS][408] +39 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][409] ([i915#5784]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-15/igt@gem_eio@unwedge-stress.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][411] ([i915#11713]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-tglu-8/igt@gem_exec_big@single.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][413] ([i915#13304]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [TIMEOUT][415] ([i915#12917] / [i915#12964]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-on.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@reload-no-display: - shard-dg2: [DMESG-WARN][417] ([i915#13029] / [i915#14545]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-4/igt@i915_module_load@reload-no-display.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-8/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@system-suspend-devices: - shard-rkl: [SKIP][419] ([i915#13328]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@i915_pm_rpm@system-suspend-devices.html * igt@kms_async_flips@crc: - shard-rkl: [SKIP][421] ([i915#14544]) -> [PASS][422] +33 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_async_flips@crc.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_async_flips@crc.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][423] ([i915#5956]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_color@gamma: - shard-rkl: [SKIP][425] ([i915#12655] / [i915#14544]) -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_color@gamma.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_color@gamma.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [FAIL][427] ([i915#13566]) -> [PASS][428] +2 other tests pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1: - shard-mtlp: [FAIL][429] ([i915#13566]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-5/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-7/igt@kms_cursor_crc@cursor-size-change@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [FAIL][431] ([i915#13566]) -> [PASS][432] +1 other test pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-rkl: [FAIL][433] ([i915#2346]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][435] ([i915#3555]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [TIMEOUT][437] ([i915#14033] / [i915#14350]) -> [PASS][438] [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][439] ([i915#14033]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-snb2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@bo-too-big-interruptible: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#3637]) -> [PASS][442] +2 other tests pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_flip@bo-too-big-interruptible.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [ABORT][443] -> [PASS][444] [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_tiling@flip-change-tiling: - shard-rkl: [DMESG-WARN][445] ([i915#12917] / [i915#12964]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_flip_tiling@flip-change-tiling.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][448] +5 other tests pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][449] ([i915#6880]) -> [PASS][450] +1 other test pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_invalid_mode@zero-hdisplay: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][452] +1 other test pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_invalid_mode@zero-hdisplay.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_lease@lease-invalid-plane: - shard-dg1: [DMESG-WARN][453] ([i915#4423]) -> [PASS][454] +2 other tests pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-12/igt@kms_lease@lease-invalid-plane.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-15/igt@kms_lease@lease-invalid-plane.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#8825]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-rkl: [SKIP][457] ([i915#14544] / [i915#7294]) -> [PASS][458] [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_multiple@2x-tiling-y: - shard-glk: [SKIP][459] -> [PASS][460] +6 other tests pass [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-glk8/igt@kms_plane_multiple@2x-tiling-y.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-glk5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][462] [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a: - shard-rkl: [SKIP][463] ([i915#12247] / [i915#14544]) -> [PASS][464] +3 other tests pass [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - shard-rkl: [SKIP][465] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][466] +4 other tests pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-rkl: [SKIP][467] ([i915#14544] / [i915#8152]) -> [PASS][468] [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-rkl: [SKIP][469] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][470] [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [SKIP][471] ([i915#13441] / [i915#14544]) -> [PASS][472] [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#9519]) -> [PASS][474] [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][475] ([i915#9519]) -> [PASS][476] [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#1849]) -> [PASS][478] [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_pm_rpm@fences.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][479] ([i915#9519]) -> [PASS][480] +1 other test pass [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_setmode@basic: - shard-dg2: [FAIL][481] ([i915#5465]) -> [PASS][482] +1 other test pass [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-3/igt@kms_setmode@basic.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-2/igt@kms_setmode@basic.html - shard-rkl: [FAIL][483] ([i915#5465]) -> [PASS][484] [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_setmode@basic.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][485] ([i915#5465]) -> [PASS][486] +2 other tests pass [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@perf@blocking@0-rcs0: - shard-rkl: [FAIL][487] ([i915#10538]) -> [PASS][488] +1 other test pass [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@perf@blocking@0-rcs0.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][489] ([i915#4349]) -> [PASS][490] +4 other tests pass [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_vgem@basic-fence-flip: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#3708]) -> [PASS][492] [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@prime_vgem@basic-fence-flip.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#8411]) -> [SKIP][494] ([i915#8411]) +1 other test skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][495] ([i915#11078] / [i915#14544]) -> [SKIP][496] ([i915#11078]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][497] ([i915#3555] / [i915#9323]) -> [SKIP][498] ([i915#14544] / [i915#3555] / [i915#9323]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#9323]) -> [SKIP][500] ([i915#9323]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_ccs@suspend-resume.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@gem_ccs@suspend-resume.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: [SKIP][501] ([i915#14544] / [i915#4525]) -> [SKIP][502] ([i915#4525]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][503] ([i915#6334]) -> [SKIP][504] ([i915#14544] / [i915#6334]) +1 other test skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt: - shard-rkl: [SKIP][505] ([i915#3281]) -> [SKIP][506] ([i915#14544] / [i915#3281]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@gem_exec_reloc@basic-gtt.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][507] ([i915#14544] / [i915#3281]) -> [SKIP][508] ([i915#3281]) +10 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [INCOMPLETE][509] ([i915#13304]) -> [DMESG-WARN][510] ([i915#12964]) +1 other test dmesg-warn [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@gem_exec_suspend@basic-s0.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#4613]) -> [SKIP][512] ([i915#4613]) +2 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][513] ([i915#4613]) -> [SKIP][514] ([i915#14544] / [i915#4613]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][515] ([i915#14544] / [i915#3282]) -> [SKIP][516] ([i915#3282]) +5 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-rkl: [SKIP][517] ([i915#3282]) -> [SKIP][518] ([i915#14544] / [i915#3282]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@gem_readwrite@new-obj.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_readwrite@new-obj.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][519] ([i915#8411]) -> [SKIP][520] ([i915#14544] / [i915#8411]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][521] ([i915#14544] / [i915#3297]) -> [SKIP][522] ([i915#3297]) +2 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][523] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][524] ([i915#3297] / [i915#3323]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: [SKIP][525] ([i915#3297]) -> [SKIP][526] ([i915#14544] / [i915#3297]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][527] ([i915#14544] / [i915#2527]) -> [SKIP][528] ([i915#2527]) +3 other tests skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][529] ([i915#2527]) -> [SKIP][530] ([i915#14544] / [i915#2527]) +2 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@gen9_exec_parse@valid-registers.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][531] ([i915#14544] / [i915#8399]) -> [SKIP][532] ([i915#8399]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][533] ([i915#8399]) -> [SKIP][534] ([i915#14544] / [i915#8399]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][535] ([i915#14498]) -> [SKIP][536] ([i915#14498] / [i915#14544]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-idle.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][537] ([i915#14544] / [i915#6245]) -> [SKIP][538] ([i915#6245]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@i915_query@hwconfig_table.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#7707]) -> [SKIP][540] ([i915#7707]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@intel_hwmon@hwmon-read.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: [SKIP][541] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][542] ([i915#12454] / [i915#12712]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][543] ([i915#14544]) -> [SKIP][544] ([i915#1769] / [i915#3555]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][545] ([i915#5286]) -> [SKIP][546] ([i915#14544]) +1 other test skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] ([i915#5286]) +2 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][549] ([i915#14544]) -> [SKIP][550] ([i915#3638]) +2 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][551] ([i915#3638]) -> [SKIP][552] ([i915#14544]) +2 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: [SKIP][553] ([i915#14544]) -> [SKIP][554] ([i915#12313]) +1 other test skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][555] ([i915#6095]) -> [SKIP][556] ([i915#14098] / [i915#6095]) +4 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][557] ([i915#14544]) -> [SKIP][558] ([i915#12805]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][559] ([i915#14098] / [i915#6095]) -> [SKIP][560] ([i915#6095]) +2 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][561] ([i915#14544]) -> [SKIP][562] ([i915#14098] / [i915#6095]) +10 other tests skip [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][563] ([i915#14098] / [i915#6095]) -> [SKIP][564] ([i915#14544]) +8 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-rkl: [SKIP][565] ([i915#12313]) -> [SKIP][566] ([i915#14544]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: [SKIP][567] ([i915#14544]) -> [SKIP][568] +8 other tests skip [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][569] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][570] ([i915#11151] / [i915#7828]) +10 other tests skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: [SKIP][571] ([i915#11151] / [i915#7828]) -> [SKIP][572] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][573] ([i915#7118] / [i915#9424]) -> [FAIL][574] ([i915#7173]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-dg1: [SKIP][575] ([i915#7116] / [i915#9424]) -> [SKIP][576] ([i915#9424]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-14/igt@kms_content_protection@legacy.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-12/igt@kms_content_protection@legacy.html - shard-tglu: [SKIP][577] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) -> [SKIP][578] ([i915#6944] / [i915#7118] / [i915#9424]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-tglu-4/igt@kms_content_protection@legacy.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-tglu-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][579] ([i915#14544]) -> [SKIP][580] ([i915#7118] / [i915#9424]) [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_content_protection@type1.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][581] ([i915#13049]) -> [SKIP][582] ([i915#14544]) +1 other test skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [SKIP][583] ([i915#14544]) -> [FAIL][584] ([i915#13566]) +1 other test fail [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][585] ([i915#14544]) -> [SKIP][586] ([i915#13049]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: [SKIP][587] ([i915#3555]) -> [SKIP][588] ([i915#14544]) +2 other tests skip [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][589] ([i915#14544]) -> [SKIP][590] ([i915#4103]) [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][591] ([i915#4103]) -> [SKIP][592] ([i915#14544]) +1 other test skip [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][593] ([i915#14544]) -> [SKIP][594] ([i915#13749]) [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][595] ([i915#13748]) -> [SKIP][596] ([i915#14544]) +1 other test skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][597] ([i915#14544]) -> [SKIP][598] ([i915#13707]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][599] ([i915#14544]) -> [SKIP][600] ([i915#3555] / [i915#3840]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][601] ([i915#14544]) -> [SKIP][602] ([i915#3840] / [i915#9053]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][603] ([i915#14544] / [i915#3955]) -> [SKIP][604] ([i915#3955]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][605] ([i915#14544] / [i915#658]) -> [SKIP][606] ([i915#658]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_feature_discovery@psr1.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][607] ([i915#14544] / [i915#9934]) -> [SKIP][608] ([i915#9934]) +5 other tests skip [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][609] ([i915#9934]) -> [SKIP][610] ([i915#14544] / [i915#9934]) +8 other tests skip [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][611] ([i915#2672] / [i915#3555]) -> [SKIP][612] ([i915#14544] / [i915#3555]) +1 other test skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][613] ([i915#14544] / [i915#3555]) -> [SKIP][614] ([i915#2672] / [i915#3555]) +4 other tests skip [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-rkl: [SKIP][615] ([i915#14544] / [i915#3555]) -> [DMESG-WARN][616] ([i915#12964]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-rkl: [SKIP][617] ([i915#1825]) -> [SKIP][618] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][619] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][620] ([i915#3023]) +18 other tests skip [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][621] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][622] ([i915#1825]) +30 other tests skip [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][623] ([i915#8708]) -> [SKIP][624] ([i915#4423] / [i915#8708]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][625] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][626] ([i915#9766]) [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][627] ([i915#10433] / [i915#3458]) -> [SKIP][628] ([i915#3458]) +3 other tests skip [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][629] ([i915#3023]) -> [SKIP][630] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][631] ([i915#3458]) -> [SKIP][632] ([i915#10433] / [i915#3458]) +7 other tests skip [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][633] ([i915#12713]) -> [SKIP][634] ([i915#1187] / [i915#12713]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][635] ([i915#14544]) -> [SKIP][636] ([i915#12713]) [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][637] ([i915#3555] / [i915#8228]) -> [SKIP][638] ([i915#14544]) [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][639] ([i915#10656] / [i915#14544]) -> [SKIP][640] ([i915#10656]) +1 other test skip [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][641] ([i915#4070] / [i915#4816]) -> [SKIP][642] ([i915#14544] / [i915#4070] / [i915#4816]) [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][643] ([i915#14544]) -> [SKIP][644] ([i915#6301]) [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_panel_fitting@legacy.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][645] ([i915#14544]) -> [SKIP][646] ([i915#3555]) +2 other tests skip [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][647] ([i915#13958]) -> [SKIP][648] ([i915#14544]) [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][649] ([i915#14544]) -> [SKIP][650] ([i915#14259]) [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][651] ([i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][652] ([i915#6953]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][653] ([i915#12247]) -> [SKIP][654] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][655] ([i915#12247]) -> [SKIP][656] ([i915#12247] / [i915#14544]) [655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: [SKIP][657] ([i915#12247] / [i915#14544]) -> [SKIP][658] ([i915#12247]) [657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-rkl: [SKIP][659] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][660] ([i915#12247]) +1 other test skip [659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][661] ([i915#3828]) -> [SKIP][662] ([i915#14544] / [i915#3828]) [661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][663] ([i915#3361]) -> [FAIL][664] ([i915#9295]) [663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][665] ([i915#9685]) -> [SKIP][666] ([i915#14544] / [i915#9685]) [665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][667] ([i915#4281]) -> [SKIP][668] ([i915#14544] / [i915#4281]) [667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][669] ([i915#9340]) -> [SKIP][670] ([i915#3828]) [669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@pc8-residency: - shard-rkl: [SKIP][671] -> [SKIP][672] ([i915#14544]) +6 other tests skip [671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_pm_rpm@pc8-residency.html [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][673] ([i915#14544] / [i915#6524]) -> [SKIP][674] ([i915#6524]) [673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: [SKIP][675] ([i915#11520] / [i915#4423]) -> [SKIP][676] ([i915#11520]) [675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][677] ([i915#11520]) -> [SKIP][678] ([i915#11520] / [i915#14544]) +2 other tests skip [677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][679] ([i915#11520] / [i915#14544]) -> [SKIP][680] ([i915#11520]) +8 other tests skip [679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][681] ([i915#9683]) -> [SKIP][682] ([i915#14544] / [i915#9683]) [681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][683] ([i915#14544] / [i915#9683]) -> [SKIP][684] ([i915#9683]) [683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr2-cursor-blt: - shard-rkl: [SKIP][685] ([i915#1072] / [i915#9732]) -> [SKIP][686] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][687] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][688] ([i915#1072] / [i915#9732]) +14 other tests skip [687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][689] ([i915#5289]) -> [SKIP][690] ([i915#14544]) [689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][691] ([i915#14544]) -> [SKIP][692] ([i915#5289]) [691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: [SKIP][693] ([i915#14544] / [i915#3555]) -> [SKIP][694] ([i915#3555]) [693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vblank@query-idle-hang: - shard-rkl: [SKIP][695] ([i915#14544]) -> [DMESG-WARN][696] ([i915#12964]) +1 other test dmesg-warn [695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_vblank@query-idle-hang.html [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-5/igt@kms_vblank@query-idle-hang.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][697] ([i915#3555] / [i915#9906]) -> [SKIP][698] ([i915#14544]) [697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-2/igt@kms_vrr@negative-basic.html [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-rkl: [SKIP][699] ([i915#14544] / [i915#2437]) -> [SKIP][700] ([i915#2437]) [699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_writeback@writeback-check-output.html [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: [SKIP][701] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][702] ([i915#2437] / [i915#9412]) [701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][703] ([i915#3291] / [i915#3708]) -> [SKIP][704] ([i915#14544] / [i915#3291] / [i915#3708]) [703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-5/igt@prime_vgem@basic-fence-read.html [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][705] ([i915#3708]) -> [SKIP][706] ([i915#14544] / [i915#3708]) [705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-4/igt@prime_vgem@fence-read-hang.html [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][707] ([i915#14544] / [i915#9917]) -> [SKIP][708] ([i915#9917]) [707]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16836/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [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#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#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#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8447 -> IGTPW_13440 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16836: 8cbc0224847589e88bb3ea0c00952c51e00f5bd6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13440: b3ade10d953bfd9c9bda140ebc2a0a5e9fd100da @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8447: 8447 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13440/index.html [-- Attachment #2: Type: text/html, Size: 232901 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati ` (3 preceding siblings ...) 2025-07-09 19:06 ` ✓ i915.CI.Full: success " Patchwork @ 2025-07-11 5:51 ` Kandpal, Suraj 2025-07-11 6:18 ` Reddy Guddati, Santhosh 4 siblings, 1 reply; 7+ messages in thread From: Kandpal, Suraj @ 2025-07-11 5:51 UTC (permalink / raw) To: Reddy Guddati, Santhosh, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Thasleem, Mohammed, B, Jeevan > Subject: [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 > subtest > > If a Panel supports both HDCP1.4 and HDCP2.2 versions, the kernel will > always choose the HDCP2.2 protection path and if this fails, then > HDCP1.4 will be tried. > > The subtest uses debugfs support to force hdcp1.4 on the connector and > verify content protection. > > V2: Use hdcp14 debugfs for all the supported subtests (Suraj). > > v3: Create new separate subtests for hdcp1.4 and hdcp2.2 for all the > supported tests. (Suraj) > > v4: Add -hdcp14 suffix for subtests only for cases explicitly forcing hdcp1.4, > retain original subtest names (eg atomic, type1) for default behaviour. (Suraj) > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/kms_content_protection.c | 154 ++++++++++++++++++++++++++++++--- > 1 file changed, 142 insertions(+), 12 deletions(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index 51fc1d3be..4fa5d2c20 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -43,8 +43,8 @@ > #include "igt_panel.h" > > /** > - * SUBTEST: lic-type-0 > - * Description: Test for the integrity of link for type-0 content. > + * SUBTEST: lic-type-0-hdcp14 > + * Description: Test for the integrity of link for type-0 content with HDCP1.4. > * Why delete the lic-type-0 Lic-type-0 works with both HDCP 2.2 and HDCP 1.4 this would essentially remove testing for HDCP 2.2 type 0 content All you need to do is add not subtraction required So the test will be lic-type-0 (no changes here) And a new test lic-type-0-hdcp14 where force_hdcp is true Same for all the tests below. Regards, Suraj Kandpal > * SUBTEST: lic-type-1 > * Description: Test for the integrity of link for type-1 content. > @@ -65,6 +65,11 @@ > * Description: Test to detect the HDCP status change when we are reading > the > * uevent sent with the corresponding connector id and property id. > * > + * SUBTEST: uevent-hdcp14 > + * Description: Test to detect the status change when we are reading the > + * uevent sent with the corresponding connector id and property id > + * with HDCP1.4 content protection. > + * > * SUBTEST: %s > * Description: Test content protection with %arg[1] > * > @@ -74,6 +79,10 @@ > * @atomic-dpms: DPMS ON/OFF during atomic modesetting. > * @legacy: legacy style commit > * @type1: content type 1 that can be handled only through HDCP2.2. > + * @legacy-hdcp14: Test HDCP1.4 content protection with legacy style > commit. > + * @atomic-hdcp14: Test HDCP1.4 content protection with atomic > modesetting. > + * @atomic-dpms-hdcp14: Test HDCP1.4 content protection with atomic > modesetting and DPMS. > + * > */ > > /** > @@ -83,8 +92,10 @@ > * arg[1]: > * > * @lic-type-0: Type 0 with LIC > + * @lic-type-0-hdcp14: Type 0 with LIC and HDCP1.4 > * @lic-type-1: Type 1 with LIC. > * @type-0: Type 0 > + * @type-0-hdcp14: Type 0 with HDCP1.4 > * @type-1: Type 1 > */ > > @@ -96,6 +107,7 @@ struct data { > struct igt_fb red, green; > unsigned int cp_tests; > struct udev_monitor *uevent_monitor; > + bool is_force_hdcp14; > } data; > > /* Test flags */ > @@ -581,6 +593,51 @@ static bool output_hdcp_capable(igt_output_t > *output, int content_type) > return true; > } > > +static void set_i915_force_hdcp14(igt_output_t *output) { > + int fd, ret; > + char buf[MAX_SINK_HDCP_CAP_BUF_LEN]; > + > + fd = igt_debugfs_connector_dir(data.drm_fd, output->name, > O_RDONLY); > + igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name); > + > + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, > sizeof(buf)); > + if (ret <= 0) { > + igt_info("i915_force_hdcp14 not supported\n"); > + close(fd); > + return; > + } > + > + ret = igt_sysfs_write(fd, "i915_force_hdcp14", "1", 2); > + igt_require_f(ret > 0, "i915_force_hdcp14 is not enabled\n"); > + > + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, > sizeof(buf)); > + igt_assert_f(ret > 0 && strstr(buf, "yes"), > + "i915_force_hdcp14 is not set to 'yes' on %s > debugfs\n", > + output->name); > + > + close(fd); > +} > + > +static void reset_i915_force_hdcp14(igt_output_t *output) { > + int fd, ret; > + char buf[MAX_SINK_HDCP_CAP_BUF_LEN]; > + > + fd = igt_debugfs_connector_dir(data.drm_fd, output->name, > O_RDONLY); > + igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name); > + > + ret = igt_sysfs_write(fd, "i915_force_hdcp14", "0", 2); > + igt_require_f(ret > 0, "i915_force_hdcp14 is not disabled\n"); > + > + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, > sizeof(buf)); > + igt_assert_f(ret > 0 && strstr(buf, "no"), > + "i915_force_hdcp14 is not set to 'no' on %s > debugfs\n", > + "i915_force_hdcp14"); > + > + close(fd); > +} > + > static void > test_fini(igt_output_t *output, enum igt_commit_style commit_style) { @@ - > 654,10 +711,15 @@ test_content_protection(enum igt_commit_style > commit_style, int content_type) > output->name); > continue; > } > + if (data.is_force_hdcp14) > + set_i915_force_hdcp14(output); > > igt_dynamic_f("pipe-%s-%s", > kmstest_pipe_name(pipe), output->name) > test_content_protection_on_output(output, > pipe, commit_style, content_type); > > + if (data.is_force_hdcp14) > + reset_i915_force_hdcp14(output); > + > test_fini(output, commit_style); > /* > * Testing a output with a pipe is enough for HDCP > @@ -719,6 +781,11 @@ test_mst_cp_enable_with_retry(igt_output_t > *hdcp_mst_output[], int valid_outputs > int retry_orig = retries, count, i; > bool ret; > > + if (data.is_force_hdcp14) { > + for (count = 0; count < valid_outputs; count++) > + set_i915_force_hdcp14(hdcp_mst_output[count]); > + } > + > do { > if (retry_orig != retries) > test_mst_cp_disable(hdcp_mst_output, > COMMIT_ATOMIC, valid_outputs); @@ -752,6 +819,11 @@ > test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int > valid_outputs > igt_display_commit2(display, COMMIT_ATOMIC); > } while (retries && !ret); > > + if (data.is_force_hdcp14) { > + for (count = 0; count < valid_outputs; count++) > + reset_i915_force_hdcp14(hdcp_mst_output[count]); > + } > + > igt_assert_f(ret, "Content Protection not enabled on MST outputs\n"); > } > > @@ -878,54 +950,84 @@ static void create_fbs(void) > 0.f, 1.f, 0.f, &data.green); > } > > + > + > static const struct { > const char *desc; > const char *name; > unsigned int cp_tests; > bool content_type; > + bool is_force_hdcp14; > } subtests[] = { > + { .desc = "Test content protection with atomic modesetting with > HDCP1.4.", > + .name = "atomic-hdcp14", > + .cp_tests = 0, > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > + }, > { .desc = "Test content protection with atomic modesetting", > .name = "atomic", > .cp_tests = 0, > - .content_type = HDCP_CONTENT_TYPE_0 > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = false, > }, > - { .desc = "Test content protection with DPMS ON/OFF during atomic > modesetting.", > + { .desc = "Test content protection with DPMS ON/OFF during " > + "atomic modesetting with HDCP1.4.", > + .name = "atomic-dpms-hdcp14", > + .cp_tests = CP_DPMS, > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > + }, > + { .desc = "Test content protection with DPMS ON/OFF during atomic > +modesetting", > .name = "atomic-dpms", > .cp_tests = CP_DPMS, > - .content_type = HDCP_CONTENT_TYPE_0 > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = false, > }, > { .desc = "Test for the integrity of link with type 0 content.", > - .name = "lic-type-0", > + .name = "lic-type-0-hdcp14", > .cp_tests = CP_LIC, > .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > }, > { .desc = "Test for the integrity of link with type 1 content", > .name = "lic-type-1", > .cp_tests = CP_LIC, > .content_type = HDCP_CONTENT_TYPE_1, > + .is_force_hdcp14 = false, > }, > { .desc = "Test content protection with content type 1 " > "that can be handled only through HDCP2.2.", > .name = "type1", > .cp_tests = 0, > .content_type = HDCP_CONTENT_TYPE_1, > + .is_force_hdcp14 = false, > }, > { .desc = "Test the teardown and rebuild of the interface between " > "Intel and mei hdcp.", > .name = "mei-interface", > .cp_tests = CP_MEI_RELOAD, > .content_type = HDCP_CONTENT_TYPE_1, > + .is_force_hdcp14 = false, > }, > { .desc = "Test the content type change when the content protection > already enabled", > .name = "content-type-change", > .cp_tests = CP_TYPE_CHANGE, > .content_type = HDCP_CONTENT_TYPE_1, > }, > - { .desc = "Test to detect the HDCP status change when we are reading > the uevent " > + {.desc = "Test to detect the HDCP status change when we are reading > the uevent " > "sent with the corresponding connector id and property id.", > .name = "uevent", > .cp_tests = CP_UEVENT, > .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = false, > + }, > + { .desc = "Test to detect the HDCP status change when we are reading > the uevent " > + "sent with the corresponding connector id and property id.", > + .name = "uevent-hdcp14", > + .cp_tests = CP_UEVENT, > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > }, > /* > * Testing the revocation check through SRM needs a HDCP sink with > @@ -940,6 +1042,7 @@ static const struct { > .name = "srm", > .cp_tests = 0, > .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > }, > }; > > @@ -948,26 +1051,43 @@ static const struct { > const char *name; > unsigned int cp_tests; > bool content_type; > + bool is_force_hdcp14; > } mst_subtests[] = { > - { .desc = "Test Content protection(Type 0) over DP MST.", > + { .desc = "Test Content protection(Type 0) over DP MST", > .name = "dp-mst-type-0", > .cp_tests = 0, > - .content_type = HDCP_CONTENT_TYPE_0 > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = false, > + }, > + { .desc = "Test Content protection(Type 0) over DP MST with > HDCP1.4.", > + .name = "dp-mst-type-0-hdcp14", > + .cp_tests = 0, > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > }, > { .desc = "Test Content protection(Type 0) over DP MST with LIC.", > .name = "dp-mst-lic-type-0", > .cp_tests = CP_LIC, > - .content_type = HDCP_CONTENT_TYPE_0 > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = false, > + }, > + { .desc = "Test Content protection(Type 0) over DP MST with LIC.", > + .name = "dp-mst-lic-type-0-hdcp14", > + .cp_tests = CP_LIC, > + .content_type = HDCP_CONTENT_TYPE_0, > + .is_force_hdcp14 = true, > }, > { .desc = "Test Content protection(Type 1) over DP MST.", > .name = "dp-mst-type-1", > .cp_tests = 0, > .content_type = HDCP_CONTENT_TYPE_1, > + .is_force_hdcp14 = false, > }, > { .desc = "Test Content protection(Type 1) over DP MST with LIC.", > .name = "dp-mst-lic-type-1", > .cp_tests = CP_LIC, > .content_type = HDCP_CONTENT_TYPE_1, > + .is_force_hdcp14 = false, > }, > }; > > @@ -980,12 +1100,20 @@ igt_main > create_fbs(); > } > > - igt_describe("Test content protection with legacy style commit."); > - igt_subtest_with_dynamic("legacy") { > + igt_describe("Test content protection with legacy style commit with > HDCP1.4"); > + igt_subtest_with_dynamic("legacy-hdcp14") { > data.cp_tests = 0; > + data.is_force_hdcp14 = true; > test_content_protection(COMMIT_LEGACY, > HDCP_CONTENT_TYPE_0); > } > > + igt_describe("Test content protection with legacy style commit with > HDCP2.2"); > + igt_subtest_with_dynamic("legacy") { > + data.cp_tests = 0; > + data.is_force_hdcp14 = false; > + test_content_protection(COMMIT_LEGACY, > HDCP_CONTENT_TYPE_1); > + } > + > igt_subtest_group { > igt_fixture > igt_require(data.display.is_atomic); > @@ -995,6 +1123,7 @@ igt_main > > igt_subtest_with_dynamic(subtests[i].name) { > data.cp_tests = subtests[i].cp_tests; > + data.is_force_hdcp14 = > subtests[i].is_force_hdcp14; > > if (!strcmp(subtests[i].name, "srm")) { > bool ret; > @@ -1018,6 +1147,7 @@ igt_main > > igt_subtest(mst_subtests[i].name) { > data.cp_tests = mst_subtests[i].cp_tests; > + data.is_force_hdcp14 = > mst_subtests[i].is_force_hdcp14; > > test_content_protection_mst(mst_subtests[i].content_type); > } > } > -- > 2.34.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest 2025-07-11 5:51 ` [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Kandpal, Suraj @ 2025-07-11 6:18 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 7+ messages in thread From: Reddy Guddati, Santhosh @ 2025-07-11 6:18 UTC (permalink / raw) To: Kandpal, Suraj, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Thasleem, Mohammed, B, Jeevan On 11-07-2025 11:21, Kandpal, Suraj wrote: > > >> Subject: [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 >> subtest >> >> If a Panel supports both HDCP1.4 and HDCP2.2 versions, the kernel will >> always choose the HDCP2.2 protection path and if this fails, then >> HDCP1.4 will be tried. >> >> The subtest uses debugfs support to force hdcp1.4 on the connector and >> verify content protection. >> >> V2: Use hdcp14 debugfs for all the supported subtests (Suraj). >> >> v3: Create new separate subtests for hdcp1.4 and hdcp2.2 for all the >> supported tests. (Suraj) >> >> v4: Add -hdcp14 suffix for subtests only for cases explicitly forcing hdcp1.4, >> retain original subtest names (eg atomic, type1) for default behaviour. (Suraj) >> >> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> >> --- >> tests/kms_content_protection.c | 154 ++++++++++++++++++++++++++++++--- >> 1 file changed, 142 insertions(+), 12 deletions(-) >> >> diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c >> index 51fc1d3be..4fa5d2c20 100644 >> --- a/tests/kms_content_protection.c >> +++ b/tests/kms_content_protection.c >> @@ -43,8 +43,8 @@ >> #include "igt_panel.h" >> >> /** >> - * SUBTEST: lic-type-0 >> - * Description: Test for the integrity of link for type-0 content. >> + * SUBTEST: lic-type-0-hdcp14 >> + * Description: Test for the integrity of link for type-0 content with HDCP1.4. >> * > > Why delete the lic-type-0 > Lic-type-0 works with both HDCP 2.2 and HDCP 1.4 this would essentially remove testing for HDCP 2.2 type 0 content > All you need to do is add not subtraction required > So the test will be lic-type-0 (no changes here) > And a new test lic-type-0-hdcp14 where force_hdcp is true > Same for all the tests below. > Thanks Suraj for pointing out this. I someone have missed this only subtest "lic-type-0" , others is taken care. I will update the patch to include this subtest. > Regards, > Suraj Kandpal > >> * SUBTEST: lic-type-1 >> * Description: Test for the integrity of link for type-1 content. >> @@ -65,6 +65,11 @@ >> * Description: Test to detect the HDCP status change when we are reading >> the >> * uevent sent with the corresponding connector id and property id. >> * >> + * SUBTEST: uevent-hdcp14 >> + * Description: Test to detect the status change when we are reading the >> + * uevent sent with the corresponding connector id and property id >> + * with HDCP1.4 content protection. >> + * >> * SUBTEST: %s >> * Description: Test content protection with %arg[1] >> * >> @@ -74,6 +79,10 @@ >> * @atomic-dpms: DPMS ON/OFF during atomic modesetting. >> * @legacy: legacy style commit >> * @type1: content type 1 that can be handled only through HDCP2.2. >> + * @legacy-hdcp14: Test HDCP1.4 content protection with legacy style >> commit. >> + * @atomic-hdcp14: Test HDCP1.4 content protection with atomic >> modesetting. >> + * @atomic-dpms-hdcp14: Test HDCP1.4 content protection with atomic >> modesetting and DPMS. >> + * >> */ >> >> /** >> @@ -83,8 +92,10 @@ >> * arg[1]: >> * >> * @lic-type-0: Type 0 with LIC >> + * @lic-type-0-hdcp14: Type 0 with LIC and HDCP1.4 >> * @lic-type-1: Type 1 with LIC. >> * @type-0: Type 0 >> + * @type-0-hdcp14: Type 0 with HDCP1.4 >> * @type-1: Type 1 >> */ >> >> @@ -96,6 +107,7 @@ struct data { >> struct igt_fb red, green; >> unsigned int cp_tests; >> struct udev_monitor *uevent_monitor; >> + bool is_force_hdcp14; >> } data; >> >> /* Test flags */ >> @@ -581,6 +593,51 @@ static bool output_hdcp_capable(igt_output_t >> *output, int content_type) >> return true; >> } >> >> +static void set_i915_force_hdcp14(igt_output_t *output) { >> + int fd, ret; >> + char buf[MAX_SINK_HDCP_CAP_BUF_LEN]; >> + >> + fd = igt_debugfs_connector_dir(data.drm_fd, output->name, >> O_RDONLY); >> + igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name); >> + >> + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, >> sizeof(buf)); >> + if (ret <= 0) { >> + igt_info("i915_force_hdcp14 not supported\n"); >> + close(fd); >> + return; >> + } >> + >> + ret = igt_sysfs_write(fd, "i915_force_hdcp14", "1", 2); >> + igt_require_f(ret > 0, "i915_force_hdcp14 is not enabled\n"); >> + >> + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, >> sizeof(buf)); >> + igt_assert_f(ret > 0 && strstr(buf, "yes"), >> + "i915_force_hdcp14 is not set to 'yes' on %s >> debugfs\n", >> + output->name); >> + >> + close(fd); >> +} >> + >> +static void reset_i915_force_hdcp14(igt_output_t *output) { >> + int fd, ret; >> + char buf[MAX_SINK_HDCP_CAP_BUF_LEN]; >> + >> + fd = igt_debugfs_connector_dir(data.drm_fd, output->name, >> O_RDONLY); >> + igt_require_f(fd >= 0, "Cannot open %s debugfs\n", output->name); >> + >> + ret = igt_sysfs_write(fd, "i915_force_hdcp14", "0", 2); >> + igt_require_f(ret > 0, "i915_force_hdcp14 is not disabled\n"); >> + >> + ret = igt_debugfs_simple_read(fd, "i915_force_hdcp14", buf, >> sizeof(buf)); >> + igt_assert_f(ret > 0 && strstr(buf, "no"), >> + "i915_force_hdcp14 is not set to 'no' on %s >> debugfs\n", >> + "i915_force_hdcp14"); >> + >> + close(fd); >> +} >> + >> static void >> test_fini(igt_output_t *output, enum igt_commit_style commit_style) { @@ - >> 654,10 +711,15 @@ test_content_protection(enum igt_commit_style >> commit_style, int content_type) >> output->name); >> continue; >> } >> + if (data.is_force_hdcp14) >> + set_i915_force_hdcp14(output); >> >> igt_dynamic_f("pipe-%s-%s", >> kmstest_pipe_name(pipe), output->name) >> test_content_protection_on_output(output, >> pipe, commit_style, content_type); >> >> + if (data.is_force_hdcp14) >> + reset_i915_force_hdcp14(output); >> + >> test_fini(output, commit_style); >> /* >> * Testing a output with a pipe is enough for HDCP >> @@ -719,6 +781,11 @@ test_mst_cp_enable_with_retry(igt_output_t >> *hdcp_mst_output[], int valid_outputs >> int retry_orig = retries, count, i; >> bool ret; >> >> + if (data.is_force_hdcp14) { >> + for (count = 0; count < valid_outputs; count++) >> + set_i915_force_hdcp14(hdcp_mst_output[count]); >> + } >> + >> do { >> if (retry_orig != retries) >> test_mst_cp_disable(hdcp_mst_output, >> COMMIT_ATOMIC, valid_outputs); @@ -752,6 +819,11 @@ >> test_mst_cp_enable_with_retry(igt_output_t *hdcp_mst_output[], int >> valid_outputs >> igt_display_commit2(display, COMMIT_ATOMIC); >> } while (retries && !ret); >> >> + if (data.is_force_hdcp14) { >> + for (count = 0; count < valid_outputs; count++) >> + reset_i915_force_hdcp14(hdcp_mst_output[count]); >> + } >> + >> igt_assert_f(ret, "Content Protection not enabled on MST outputs\n"); >> } >> >> @@ -878,54 +950,84 @@ static void create_fbs(void) >> 0.f, 1.f, 0.f, &data.green); >> } >> >> + >> + >> static const struct { >> const char *desc; >> const char *name; >> unsigned int cp_tests; >> bool content_type; >> + bool is_force_hdcp14; >> } subtests[] = { >> + { .desc = "Test content protection with atomic modesetting with >> HDCP1.4.", >> + .name = "atomic-hdcp14", >> + .cp_tests = 0, >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> + }, >> { .desc = "Test content protection with atomic modesetting", >> .name = "atomic", >> .cp_tests = 0, >> - .content_type = HDCP_CONTENT_TYPE_0 >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = false, >> }, >> - { .desc = "Test content protection with DPMS ON/OFF during atomic >> modesetting.", >> + { .desc = "Test content protection with DPMS ON/OFF during " >> + "atomic modesetting with HDCP1.4.", >> + .name = "atomic-dpms-hdcp14", >> + .cp_tests = CP_DPMS, >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> + }, >> + { .desc = "Test content protection with DPMS ON/OFF during atomic >> +modesetting", >> .name = "atomic-dpms", >> .cp_tests = CP_DPMS, >> - .content_type = HDCP_CONTENT_TYPE_0 >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = false, >> }, >> { .desc = "Test for the integrity of link with type 0 content.", >> - .name = "lic-type-0", >> + .name = "lic-type-0-hdcp14", >> .cp_tests = CP_LIC, >> .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> }, >> { .desc = "Test for the integrity of link with type 1 content", >> .name = "lic-type-1", >> .cp_tests = CP_LIC, >> .content_type = HDCP_CONTENT_TYPE_1, >> + .is_force_hdcp14 = false, >> }, >> { .desc = "Test content protection with content type 1 " >> "that can be handled only through HDCP2.2.", >> .name = "type1", >> .cp_tests = 0, >> .content_type = HDCP_CONTENT_TYPE_1, >> + .is_force_hdcp14 = false, >> }, >> { .desc = "Test the teardown and rebuild of the interface between " >> "Intel and mei hdcp.", >> .name = "mei-interface", >> .cp_tests = CP_MEI_RELOAD, >> .content_type = HDCP_CONTENT_TYPE_1, >> + .is_force_hdcp14 = false, >> }, >> { .desc = "Test the content type change when the content protection >> already enabled", >> .name = "content-type-change", >> .cp_tests = CP_TYPE_CHANGE, >> .content_type = HDCP_CONTENT_TYPE_1, >> }, >> - { .desc = "Test to detect the HDCP status change when we are reading >> the uevent " >> + {.desc = "Test to detect the HDCP status change when we are reading >> the uevent " >> "sent with the corresponding connector id and property id.", >> .name = "uevent", >> .cp_tests = CP_UEVENT, >> .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = false, >> + }, >> + { .desc = "Test to detect the HDCP status change when we are reading >> the uevent " >> + "sent with the corresponding connector id and property id.", >> + .name = "uevent-hdcp14", >> + .cp_tests = CP_UEVENT, >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> }, >> /* >> * Testing the revocation check through SRM needs a HDCP sink with >> @@ -940,6 +1042,7 @@ static const struct { >> .name = "srm", >> .cp_tests = 0, >> .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> }, >> }; >> >> @@ -948,26 +1051,43 @@ static const struct { >> const char *name; >> unsigned int cp_tests; >> bool content_type; >> + bool is_force_hdcp14; >> } mst_subtests[] = { >> - { .desc = "Test Content protection(Type 0) over DP MST.", >> + { .desc = "Test Content protection(Type 0) over DP MST", >> .name = "dp-mst-type-0", >> .cp_tests = 0, >> - .content_type = HDCP_CONTENT_TYPE_0 >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = false, >> + }, >> + { .desc = "Test Content protection(Type 0) over DP MST with >> HDCP1.4.", >> + .name = "dp-mst-type-0-hdcp14", >> + .cp_tests = 0, >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> }, >> { .desc = "Test Content protection(Type 0) over DP MST with LIC.", >> .name = "dp-mst-lic-type-0", >> .cp_tests = CP_LIC, >> - .content_type = HDCP_CONTENT_TYPE_0 >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = false, >> + }, >> + { .desc = "Test Content protection(Type 0) over DP MST with LIC.", >> + .name = "dp-mst-lic-type-0-hdcp14", >> + .cp_tests = CP_LIC, >> + .content_type = HDCP_CONTENT_TYPE_0, >> + .is_force_hdcp14 = true, >> }, >> { .desc = "Test Content protection(Type 1) over DP MST.", >> .name = "dp-mst-type-1", >> .cp_tests = 0, >> .content_type = HDCP_CONTENT_TYPE_1, >> + .is_force_hdcp14 = false, >> }, >> { .desc = "Test Content protection(Type 1) over DP MST with LIC.", >> .name = "dp-mst-lic-type-1", >> .cp_tests = CP_LIC, >> .content_type = HDCP_CONTENT_TYPE_1, >> + .is_force_hdcp14 = false, >> }, >> }; >> >> @@ -980,12 +1100,20 @@ igt_main >> create_fbs(); >> } >> >> - igt_describe("Test content protection with legacy style commit."); >> - igt_subtest_with_dynamic("legacy") { >> + igt_describe("Test content protection with legacy style commit with >> HDCP1.4"); >> + igt_subtest_with_dynamic("legacy-hdcp14") { >> data.cp_tests = 0; >> + data.is_force_hdcp14 = true; >> test_content_protection(COMMIT_LEGACY, >> HDCP_CONTENT_TYPE_0); >> } >> >> + igt_describe("Test content protection with legacy style commit with >> HDCP2.2"); >> + igt_subtest_with_dynamic("legacy") { >> + data.cp_tests = 0; >> + data.is_force_hdcp14 = false; >> + test_content_protection(COMMIT_LEGACY, >> HDCP_CONTENT_TYPE_1); >> + } >> + >> igt_subtest_group { >> igt_fixture >> igt_require(data.display.is_atomic); >> @@ -995,6 +1123,7 @@ igt_main >> >> igt_subtest_with_dynamic(subtests[i].name) { >> data.cp_tests = subtests[i].cp_tests; >> + data.is_force_hdcp14 = >> subtests[i].is_force_hdcp14; >> >> if (!strcmp(subtests[i].name, "srm")) { >> bool ret; >> @@ -1018,6 +1147,7 @@ igt_main >> >> igt_subtest(mst_subtests[i].name) { >> data.cp_tests = mst_subtests[i].cp_tests; >> + data.is_force_hdcp14 = >> mst_subtests[i].is_force_hdcp14; >> >> test_content_protection_mst(mst_subtests[i].content_type); >> } >> } >> -- >> 2.34.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-11 6:19 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-09 15:19 [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Santhosh Reddy Guddati 2025-07-09 16:02 ` ✓ Xe.CI.BAT: success for tests/kms_content_protection: Add force HDCP 1.4 subtest (rev4) Patchwork 2025-07-09 16:05 ` ✓ i915.CI.BAT: " Patchwork 2025-07-09 18:55 ` ✗ Xe.CI.Full: failure " Patchwork 2025-07-09 19:06 ` ✓ i915.CI.Full: success " Patchwork 2025-07-11 5:51 ` [PATCH i-g-t v4] tests/kms_content_protection: Add force HDCP 1.4 subtest Kandpal, Suraj 2025-07-11 6:18 ` Reddy Guddati, Santhosh
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox