* [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup
@ 2026-05-06 4:15 Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Pranay Samala @ 2026-05-06 4:15 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
This series fixes issues where tests were being skipped
incorrectly and cleanup was not always happening.
Capability checks were earlier done outside dynamic subtests,
which could cause valid cases to be skipped if a later output
checks fails. Move these checks inside igt_dynamic_f() to ensure
each case runs independently.
Cleanup is also improved by centralizing framebuffer handling
and calling test_fini() after each dynamic subtest, so resources
are always released even on early exits.
Pranay Samala (3):
tests/kms_hdr: Move framebuffer into data_t for centralized cleanup
tests/kms_hdr: Move test_fini() for proper cleanup
tests/kms_hdr: Move capability checks inside dynamic subtests
tests/kms_hdr.c | 212 +++++++++++++++++++++---------------------------
1 file changed, 91 insertions(+), 121 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t v3 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
@ 2026-05-06 4:15 ` Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Pranay Samala @ 2026-05-06 4:15 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Move igt_fb_t afb from local variable in test functions into the
shared data_t struct, and add igt_remove_fb() to test_fini() so the
framebuffer is always freed during cleanup, even when a test exits
early.
v2:
- Update commit message (Karthik)
v3:
- Rebase
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_hdr.c | 30 +++++++++++++-----------------
1 file changed, 13 insertions(+), 17 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index 876c1c03a..3cd14c074 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -108,12 +108,14 @@ typedef struct data {
int fd;
int w;
int h;
+ igt_fb_t afb;
} data_t;
/* Common test cleanup. */
static void test_fini(data_t *data)
{
igt_pipe_crc_free(data->pipe_crc);
+ igt_remove_fb(data->fd, &data->afb);
igt_display_reset(&data->display);
}
@@ -176,20 +178,19 @@ static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
{
igt_display_t *display = &data->display;
igt_crc_t ref_crc, new_crc;
- igt_fb_t afb;
int afb_id, ret;
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- format, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &data->afb);
igt_assert(afb_id);
- draw_hdr_pattern(&afb);
+ draw_hdr_pattern(&data->afb);
/* Plane may be required to fit fullscreen. Check it here and allow
* smaller plane size in following tests.
*/
- igt_plane_set_fb(data->primary, &afb);
+ igt_plane_set_fb(data->primary, &data->afb);
if (igt_crtc_num_scalers(crtc) >= 1)
igt_plane_set_size(data->primary, data->w, data->h);
else
@@ -197,8 +198,8 @@ static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_TEST_ONLY, NULL);
if (!ret) {
- data->w = afb.width;
- data->h = afb.height;
+ data->w = data->afb.width;
+ data->h = data->afb.height;
}
/* Start in 8bpc. */
@@ -237,7 +238,6 @@ static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
igt_assert_crc_equal(&ref_crc, &new_crc);
test_fini(data);
- igt_remove_fb(data->fd, &afb);
}
/* Returns true if an output supports max bpc property. */
@@ -347,20 +347,19 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
igt_display_t *display = &data->display;
struct hdr_output_metadata hdr;
igt_crc_t ref_crc, new_crc;
- igt_fb_t afb;
int afb_id;
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- format, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &data->afb);
igt_assert(afb_id);
- draw_hdr_pattern(&afb);
+ draw_hdr_pattern(&data->afb);
igt_hdr_fill_st2084(&hdr);
/* Start with no metadata. */
- igt_plane_set_fb(data->primary, &afb);
+ igt_plane_set_fb(data->primary, &data->afb);
igt_plane_set_size(data->primary, data->w, data->h);
igt_hdr_set_metadata(data->output, NULL);
igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 8);
@@ -423,7 +422,6 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
cleanup:
test_fini(data);
- igt_remove_fb(data->fd, &afb);
}
static void test_static_swap(data_t *data, igt_crtc_t *crtc,
@@ -431,19 +429,18 @@ static void test_static_swap(data_t *data, igt_crtc_t *crtc,
{
igt_display_t *display = &data->display;
igt_crc_t ref_crc, new_crc;
- igt_fb_t afb;
int afb_id;
struct hdr_output_metadata hdr;
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- format, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &data->afb);
igt_assert(afb_id);
- draw_hdr_pattern(&afb);
+ draw_hdr_pattern(&data->afb);
/* Start in SDR. */
- igt_plane_set_fb(data->primary, &afb);
+ igt_plane_set_fb(data->primary, &data->afb);
igt_plane_set_size(data->primary, data->w, data->h);
igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 8);
@@ -516,7 +513,6 @@ static void test_static_swap(data_t *data, igt_crtc_t *crtc,
}
test_fini(data);
- igt_remove_fb(data->fd, &afb);
}
static void test_invalid_metadata_sizes(data_t *data)
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t v3 2/3] tests/kms_hdr: Move test_fini() for proper cleanup
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
@ 2026-05-06 4:15 ` Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Pranay Samala @ 2026-05-06 4:15 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Move test_fini() out of individual test functions to right
after the igt_dynamic_f() block.
Previously, if an igt_require_f() or igt_assert() inside
the dynamic subtest caused a skip or failure, test_fini()
would never execute since the longjmp exits the dynamic block.
By placing test_fini() after igt_dynamic_f(), cleanup
(pipe_crc free, fb removal, display reset) is guaranteed to
run regardless of how the dynamic subtest exits.
v2:
- Remove cleanup label (Karthik)
v3:
- Rebase
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_hdr.c | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index 3cd14c074..ded375a23 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -236,8 +236,6 @@ static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
/* CRC capture is clamped to 8bpc, so capture should match. */
igt_assert_crc_equal(&ref_crc, &new_crc);
-
- test_fini(data);
}
/* Returns true if an output supports max bpc property. */
@@ -299,6 +297,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
test_bpc_switch_on_output(data,
crtc,
output, hdr_test_formats[i], flags);
+ test_fini(data);
}
/* One pipe is enough */
@@ -384,7 +383,7 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
if (flags & TEST_INVALID_HDR) {
igt_assert_eq(system("dmesg|tail -n 1000|grep -E \"Unknown EOTF [0-9]+\""), 0);
- goto cleanup;
+ return;
}
if (flags & TEST_BRIGHTNESS) {
@@ -419,9 +418,6 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
igt_force_dsc_disable(data->fd, data->output->name);
igt_assert(igt_is_force_dsc_disabled(data->fd, data->output->name));
}
-
-cleanup:
- test_fini(data);
}
static void test_static_swap(data_t *data, igt_crtc_t *crtc,
@@ -511,8 +507,6 @@ static void test_static_swap(data_t *data, igt_crtc_t *crtc,
igt_force_dsc_disable(data->fd, data->output->name);
igt_assert(igt_is_force_dsc_disabled(data->fd, data->output->name));
}
-
- test_fini(data);
}
static void test_invalid_metadata_sizes(data_t *data)
@@ -526,8 +520,6 @@ static void test_invalid_metadata_sizes(data_t *data)
igt_assert_eq(set_invalid_hdr_output_metadata(data, &hdr, metadata_size + 1), -EINVAL);
igt_assert_eq(set_invalid_hdr_output_metadata(data, &hdr, metadata_size - 1), -EINVAL);
igt_assert_eq(set_invalid_hdr_output_metadata(data, &hdr, metadata_size * 2), -EINVAL);
-
- test_fini(data);
}
static void test_hdr(data_t *data, uint32_t flags)
@@ -635,6 +627,8 @@ static void test_hdr(data_t *data, uint32_t flags)
if (flags & TEST_INVALID_METADATA_SIZES)
test_invalid_metadata_sizes(data);
}
+
+ test_fini(data);
}
/* One pipe is enough */
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t v3 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
@ 2026-05-06 4:15 ` Pranay Samala
2026-05-06 4:50 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev3) Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Pranay Samala @ 2026-05-06 4:15 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Earlier, output capability checks were done outside the dynamic
subtest scope using continue/break. This caused a problem where
if an earlier output (e.g., eDP) passed but a later output
(e.g., DP) failed a check (such as reading bpc), the entire
subtest would be skipped, discarding the earlier valid result
and reporting a false skip/failure.
Fix this by moving all output capability checks inside dynamic
block. Each pipe-output-format combination is now an independent
dynamic subtest that passes or skips on its own merit, without
affecting other combinations.
v2:
- Consider other pipe if pipe combo fails (Karthik)
- Handle test_fini wherever required (Karthik)
v3:
- Update the commit message (Karthik)
v4:
- Rebase
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
---
tests/kms_hdr.c | 168 +++++++++++++++++++++---------------------------
1 file changed, 74 insertions(+), 94 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index ded375a23..d50f87787 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -255,17 +255,6 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
for_each_connected_output(display, output) {
igt_crtc_t *crtc;
- if (!has_max_bpc(output)) {
- igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n",
- igt_output_name(output));
- continue;
- }
-
- if (igt_get_output_max_bpc(output) < 10) {
- igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
- continue;
- }
-
for_each_crtc(display, crtc) {
igt_output_set_crtc(output,
crtc);
@@ -275,17 +264,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
}
for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) {
- prepare_test(data, output,
- crtc);
-
- if (is_intel_device(data->fd) &&
- !igt_max_bpc_constraint(display, crtc, output, 10)) {
- igt_info("%s: No suitable mode found to use 10 bpc.\n",
- igt_output_name(output));
-
- test_fini(data);
- break;
- }
+ prepare_test(data, output, crtc);
data->mode = igt_output_get_mode(output);
data->w = data->mode->hdisplay;
@@ -293,10 +272,24 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
igt_dynamic_f("pipe-%s-%s-%s",
igt_crtc_name(crtc), output->name,
- igt_format_str(hdr_test_formats[i]))
- test_bpc_switch_on_output(data,
- crtc,
- output, hdr_test_formats[i], flags);
+ igt_format_str(hdr_test_formats[i])) {
+ igt_require_f(has_max_bpc(output),
+ "%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n",
+ igt_output_name(output));
+
+ igt_require_f(igt_get_output_max_bpc(output) >= 10,
+ "%s: Doesn't support 10 bpc.\n",
+ igt_output_name(output));
+
+ igt_require_f(!is_intel_device(data->fd) ||
+ igt_max_bpc_constraint(display, crtc, output, 10),
+ "%s: No suitable mode found to use 10 bpc.\n",
+ igt_output_name(output));
+
+ test_bpc_switch_on_output(data, crtc, output,
+ hdr_test_formats[i], flags);
+ }
+
test_fini(data);
}
@@ -533,43 +526,8 @@ static void test_hdr(data_t *data, uint32_t flags)
for_each_connected_output(display, output) {
igt_crtc_t *crtc;
- /* To test HDR, 10 bpc is required, so we need to
- * set MAX_BPC property to 10bpc prior to setting
- * HDR metadata property. Therefore, checking.
- */
- if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) {
- igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
- igt_output_name(output));
- continue;
- }
-
- /* For negative test, panel should be non-hdr. */
- if ((flags & TEST_INVALID_HDR) && igt_is_panel_hdr(data->fd, output)) {
- igt_info("%s: Can't run negative test on HDR panel.\n",
- igt_output_name(output));
- continue;
- }
-
- if ((flags & ~TEST_INVALID_HDR) && !igt_is_panel_hdr(data->fd, output)) {
- igt_info("%s: Can't run HDR tests on non-HDR panel.\n",
- igt_output_name(output));
- continue;
- }
-
- if (igt_get_output_max_bpc(output) < 10) {
- igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
- continue;
- }
-
- if ((flags & TEST_BRIGHTNESS) && !output_is_internal_panel(output)) {
- igt_info("%s: Can't run brightness test on non-internal panel.\n",
- igt_output_name(output));
- continue;
- }
-
for_each_crtc(display, crtc) {
- igt_output_set_crtc(output,
- crtc);
+ igt_output_set_crtc(output, crtc);
if (!intel_pipe_output_combo_valid(display)) {
igt_output_set_crtc(output, NULL);
continue;
@@ -579,42 +537,64 @@ static void test_hdr(data_t *data, uint32_t flags)
prepare_test(data, output,
crtc);
- /* Signal HDR requirement via metadata */
- igt_hdr_fill_st2084(&hdr);
- igt_hdr_set_metadata(data->output, &hdr);
- if (igt_display_try_commit2(display, display->is_atomic ?
- COMMIT_ATOMIC : COMMIT_LEGACY)) {
- igt_info("%s: Couldn't set HDR metadata\n",
- igt_output_name(output));
- test_fini(data);
- break;
- }
-
- if (is_intel_device(data->fd) &&
- !igt_max_bpc_constraint(display, crtc, output, 10)) {
- igt_info("%s: No suitable mode found to use 10 bpc.\n",
- igt_output_name(output));
-
- test_fini(data);
- break;
- }
-
- if (igt_is_dsc_enabled(data->fd, output->name))
- flags |= TEST_NEEDS_DSC;
- else
- flags &= ~TEST_NEEDS_DSC;
-
- igt_hdr_set_metadata(data->output, NULL);
- igt_display_commit2(display, display->is_atomic ?
- COMMIT_ATOMIC : COMMIT_LEGACY);
-
data->mode = igt_output_get_mode(output);
data->w = data->mode->hdisplay;
data->h = data->mode->vdisplay;
- igt_dynamic_f("pipe-%s-%s-%s",
- igt_crtc_name(crtc), output->name,
- igt_format_str(hdr_test_formats[i])) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc), output->name,
+ igt_format_str(hdr_test_formats[i])) {
+ igt_require_f(has_max_bpc(output) &&
+ igt_output_supports_hdr(output),
+ "%s: Doesn't support IGT_CONNECTOR_MAX_BPC "
+ "or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
+ igt_output_name(output));
+
+ if (flags & TEST_INVALID_HDR)
+ igt_require_f(!igt_is_panel_hdr(data->fd, output),
+ "%s: Can't run negative test on "
+ "HDR panel.\n",
+ igt_output_name(output));
+
+ if (!(flags & TEST_INVALID_HDR))
+ igt_require_f(igt_is_panel_hdr(data->fd, output),
+ "%s: Can't run HDR tests on "
+ "non-HDR panel.\n",
+ igt_output_name(output));
+
+ igt_require_f(igt_get_output_max_bpc(output) >= 10,
+ "%s: Doesn't support 10 bpc.\n",
+ igt_output_name(output));
+
+ if (flags & TEST_BRIGHTNESS)
+ igt_require_f(output_is_internal_panel(output),
+ "%s: Can't run brightness test on "
+ "non-internal panel.\n",
+ igt_output_name(output));
+
+ /* Signal HDR requirement via metadata */
+ igt_hdr_fill_st2084(&hdr);
+ igt_hdr_set_metadata(data->output, &hdr);
+ igt_require_f(!igt_display_try_commit2(display,
+ display->is_atomic ?
+ COMMIT_ATOMIC :
+ COMMIT_LEGACY),
+ "%s: Couldn't set HDR metadata\n",
+ igt_output_name(output));
+
+ igt_require_f(!is_intel_device(data->fd) ||
+ igt_max_bpc_constraint(display, crtc, output, 10),
+ "%s: No suitable mode found to use 10 bpc.\n",
+ igt_output_name(output));
+
+ if (igt_is_dsc_enabled(data->fd, output->name))
+ flags |= TEST_NEEDS_DSC;
+ else
+ flags &= ~TEST_NEEDS_DSC;
+
+ igt_hdr_set_metadata(data->output, NULL);
+ igt_display_commit2(display, display->is_atomic ?
+ COMMIT_ATOMIC : COMMIT_LEGACY);
+
if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
TEST_INVALID_HDR | TEST_BRIGHTNESS))
test_static_toggle(data,
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev3)
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (2 preceding siblings ...)
2026-05-06 4:15 ` [PATCH i-g-t v3 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
@ 2026-05-06 4:50 ` Patchwork
2026-05-06 4:54 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-06 4:50 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1594 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from IGT_8888 -> IGTPW_15106
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15106 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/bat-dg2-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8888 -> IGTPW_15106
CI-20190529: 20190529
CI_DRM_18417: 835de80ce9b34b618442ba91483170201b50b553 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15106: c41e04fdc9167439e45f453db7d3db7495c7c53d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
[-- Attachment #2: Type: text/html, Size: 2180 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Fix incorrect skips and improve cleanup (rev3)
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (3 preceding siblings ...)
2026-05-06 4:50 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev3) Patchwork
@ 2026-05-06 4:54 ` Patchwork
2026-05-06 7:00 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-06 4:54 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1906 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8888_BAT -> XEIGTPW_15106_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15106_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8888 -> IGTPW_15106
IGTPW_15106: c41e04fdc9167439e45f453db7d3db7495c7c53d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4990-835de80ce9b34b618442ba91483170201b50b553: 835de80ce9b34b618442ba91483170201b50b553
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/index.html
[-- Attachment #2: Type: text/html, Size: 2566 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for Fix incorrect skips and improve cleanup (rev3)
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (4 preceding siblings ...)
2026-05-06 4:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-06 7:00 ` Patchwork
2026-05-06 7:52 ` ✗ Xe.CI.FULL: " Patchwork
2026-05-06 12:54 ` ✓ i915.CI.Full: success " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-06 7:00 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 146053 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8888_full -> IGTPW_15106_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15106_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15106_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15106_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][1] +16 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][2] +15 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-snb: NOTRUN -> [FAIL][3] +5 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
* {igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010} (NEW):
- shard-tglu: NOTRUN -> [SKIP][4] +16 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-2/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* {igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010} (NEW):
- shard-dg1: NOTRUN -> [SKIP][5] +18 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f:
- shard-mtlp: NOTRUN -> [SKIP][6] +9 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu-1: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-mtlp: [PASS][8] -> [DMESG-WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@perf_pmu@most-busy-idle-check-all@bcs0:
- shard-mtlp: [PASS][10] -> [FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@bcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all@bcs0.html
#### Warnings ####
* igt@kms_hdr@bpc-switch-dpms:
- shard-snb: [SKIP][12] -> [FAIL][13] +2 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-snb7/igt@kms_hdr@bpc-switch-dpms.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb5/igt@kms_hdr@bpc-switch-dpms.html
New tests
---------
New tests have been introduced between IGT_8888_full and IGTPW_15106_full:
### New IGT tests (41) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.14] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-suspend@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-suspend@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_15106_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8411])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#13008])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb5/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6344])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#6344])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][36] ([i915#11965]) +4 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#14544] / [i915#3281]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +10 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][46] -> [INCOMPLETE][47] ([i915#13356]) +1 other test incomplete
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#284])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +10 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_mmap_wc@read.html
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_pread@display.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_pread@display.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#13717] / [i915#14544])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#13398])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#13717])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#8411]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +13 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297] / [i915#4880])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [ABORT][79] ([i915#5566])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#2856]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#14118]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#14118]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#14118])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk10: NOTRUN -> [ABORT][89] ([i915#15342]) +1 other test abort
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_gt_init-enodev:
- shard-glk10: NOTRUN -> [SKIP][90] +135 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][91] ([i915#13029] / [i915#14545])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@i915_module_load@reload-no-display.html
- shard-snb: NOTRUN -> [DMESG-WARN][92] ([i915#14545])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2: NOTRUN -> [DMESG-WARN][93] ([i915#14545])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#8399]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][95] -> [INCOMPLETE][96] ([i915#13356] / [i915#13820]) +1 other test incomplete
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#14498])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][98] -> [INCOMPLETE][99] ([i915#13356])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk2/igt@i915_pm_rpm@system-suspend.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#11681])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#4387])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][103] ([i915#4817] / [i915#7443])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: [PASS][104] -> [INCOMPLETE][105] ([i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#4817])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4212]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][110] ([i915#1769]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][114] ([i915#1769])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#5286]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#15733] / [i915#5138])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][124] +22 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638] / [i915#4423])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +8 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#12313]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][132] +66 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +29 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#12313] / [i915#14544])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +34 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#12805])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#6095]) +8 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][141] ([i915#15582]) +1 other test incomplete
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14098] / [i915#6095]) +59 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +34 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#6095]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +98 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +86 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#6095]) +149 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +8 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3116] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#15330] / [i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15330])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#15330])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#15865])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_content_protection@lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#15865])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#15865]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#15865]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#15865]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#3555]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13049])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#13049])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#13049])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#13049])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][174] -> [FAIL][175] ([i915#13566]) +4 other tests fail
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][176] -> [FAIL][177] ([i915#13566]) +9 other tests fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][178] ([i915#13566]) +2 other tests fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [FAIL][179] ([i915#13566]) +1 other test fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3555]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555]) +8 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8814]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9809]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#13046] / [i915#5354]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9067])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#4103])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#13691])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#13691])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#13691])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#13691])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#13691])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#13748])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13748])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8812])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#1839])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#1839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#1839])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#1839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1839])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#658])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-busy-flip:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_flip@2x-busy-flip.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3637] / [i915#9934])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9934]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8381]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][212] ([i915#12745] / [i915#4839])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk11: NOTRUN -> [INCOMPLETE][213] ([i915#12745])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#14544] / [i915#9934]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3637] / [i915#9934]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +8 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8381])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8381])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][219] ([i915#6113]) +1 other test incomplete
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][221] ([i915#12745] / [i915#4839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][222] ([i915#12745])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][223] ([i915#12314] / [i915#12745] / [i915#6113])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#15643]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15643]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#15643])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15643] / [i915#5190])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#15643]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#15643]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#15643]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#14544] / [i915#1825]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#15990] / [i915#8708]) +12 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#15991] / [i915#5354]) +23 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][234] ([i915#10056])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#10056])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#5439])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15990]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][238] -> [SKIP][239] ([i915#15989]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15991]) +26 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][241] +100 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15991]) +34 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#15989]) +28 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#14544] / [i915#15102])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#15104] / [i915#15990])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#15104] / [i915#15990])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15102] / [i915#3023]) +27 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102] / [i915#3458]) +9 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#15991] / [i915#1825]) +21 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#1825]) +51 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3458]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15102]) +22 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#10055])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#10055])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15102]) +6 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15990]) +18 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15990]) +9 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +11 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#15989]) +13 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#15989])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#15989]) +8 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#15989]) +14 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#15989]) +9 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#15104] / [i915#15990]) +2 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-glk: NOTRUN -> [SKIP][267] +422 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#15102]) +21 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15990] / [i915#8708]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#10433] / [i915#15102] / [i915#3458])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][271] +65 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#15990] / [i915#8708]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15989]) +24 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#15102]) +38 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][276] +49 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#14543])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][283] ([i915#15436]) +1 other test incomplete
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#13688])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#13688])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15458])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#15460])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15459])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15458])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#15458])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#15458])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#6301])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#6301])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#6301])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][295] +54 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][296] +17 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][297] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#14712])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#15709]) +6 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15709]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#15608]) +3 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#15608]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15608]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#15709]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#15709]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#15709]) +6 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][307] ([i915#13026]) +1 other test incomplete
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#13958])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#13958]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#13958])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15887] / [i915#9809])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#13046] / [i915#5354] / [i915#9423])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#15329]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329] / [i915#6953]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15329]) +9 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#5354])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_pm_backlight@basic-brightness.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#5354])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#5354])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9812])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#3828]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#15739])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#4077]) +8 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][323] -> [SKIP][324] ([i915#15073]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][325] -> [SKIP][326] ([i915#15073])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#15073]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][328] -> [SKIP][329] ([i915#15073]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#14544] / [i915#6524])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#6524])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#11520]) +6 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12316]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#11520]) +13 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#11520]) +6 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#11520] / [i915#14544])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][339] ([i915#11520]) +3 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][340] ([i915#11520]) +10 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#11520]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-glk11: NOTRUN -> [SKIP][342] ([i915#11520]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#9683])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#9683])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#4348])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +17 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#9732]) +10 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#9732]) +10 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9688]) +12 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +29 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#1072] / [i915#9732]) +8 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#12755] / [i915#15867])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12755] / [i915#15867])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#5289])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#5289])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#5289]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][358] ([i915#13179]) +1 other test abort
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#3555])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#8809])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][361] +279 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][362] ([i915#12276])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][363] -> [INCOMPLETE][364] ([i915#12276])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
- shard-rkl: [PASS][365] -> [ABORT][366] ([i915#15132]) +1 other test abort
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#11920] / [i915#14544])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#3555] / [i915#9906])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#9906])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#9906])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#9906])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#8808] / [i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#9906]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#2435])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#2433])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: NOTRUN -> [FAIL][377] ([i915#4349]) +1 other test fail
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: [PASS][378] -> [FAIL][379] ([i915#4349]) +2 other tests fail
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-1/igt@perf_pmu@busy-double-start.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [FAIL][380] ([i915#12549] / [i915#6806]) +1 other test fail
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@frequency.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][381] -> [FAIL][382] ([i915#15997]) +1 other test fail
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [PASS][383] -> [FAIL][384] ([i915#15997]) +1 other test fail
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [PASS][385] -> [FAIL][386] ([i915#15997]) +1 other test fail
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#8516])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9917])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][390] ([i915#13356]) -> [PASS][391] +2 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@gem_ccs@suspend-resume.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][392] ([i915#12392] / [i915#13356]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [FAIL][394] ([i915#15762]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [FAIL][396] ([i915#15762]) -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][398] ([i915#15762]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-5/igt@gem_exec_suspend@basic-s4-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_linear_blits@normal:
- shard-dg1: [FAIL][400] ([i915#15391]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-14/igt@gem_linear_blits@normal.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@gem_linear_blits@normal.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [INCOMPLETE][402] ([i915#13356]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][404] ([i915#12061]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-3/igt@i915_selftest@live@workarounds.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][406] ([i915#4817]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-rkl: [FAIL][408] ([i915#15967]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][410] ([i915#15989]) -> [PASS][411] +5 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-glk: [SKIP][412] -> [PASS][413] +4 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][414] ([i915#9340]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][416] ([i915#15073]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][418] ([i915#15073]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][420] ([i915#14419]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
- shard-glk: [ABORT][422] ([i915#13179]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][424] ([i915#15106]) -> [PASS][425] +2 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-9/igt@kms_setmode@basic.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_setmode@basic.html
- shard-dg2: [FAIL][426] ([i915#15106]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-5/igt@kms_setmode@basic.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][428] ([i915#15106]) -> [PASS][429] +2 other tests pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][430] ([i915#12276]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][432] ([i915#4349]) -> [PASS][433] +4 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][434] ([i915#6335]) -> [SKIP][435] ([i915#14544] / [i915#6335])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][436] ([i915#280]) -> [SKIP][437] ([i915#14544] / [i915#280])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][438] ([i915#4525]) -> [SKIP][439] ([i915#14544] / [i915#4525]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][440] ([i915#15816]) -> [FAIL][441] ([i915#15944])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-5/igt@gem_exec_big@single.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#3281]) -> [SKIP][443] ([i915#3281]) +3 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: [SKIP][444] ([i915#3281]) -> [SKIP][445] ([i915#14544] / [i915#3281])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][446] ([i915#4613]) -> [SKIP][447] ([i915#14544] / [i915#4613])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#4613]) -> [SKIP][449] ([i915#4613])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][450] ([i915#3282]) -> [SKIP][451] ([i915#14544] / [i915#3282]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3282]) -> [SKIP][453] ([i915#3282]) +4 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#3297]) -> [SKIP][455] ([i915#3297])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_userptr_blits@access-control.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][456] ([i915#3281] / [i915#3297]) -> [SKIP][457] ([i915#14544] / [i915#3281] / [i915#3297])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@gem_userptr_blits@relocations.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][458] ([i915#2527]) -> [SKIP][459] ([i915#14544] / [i915#2527])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#8399]) -> [SKIP][461] ([i915#8399])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][462] ([i915#5723]) -> [SKIP][463] ([i915#14544] / [i915#5723])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][464] ([i915#9531]) -> [SKIP][465] ([i915#14544] / [i915#9531])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#5286]) -> [SKIP][467] ([i915#5286]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg1: [SKIP][468] ([i915#4538] / [i915#5286]) -> [SKIP][469] ([i915#4423] / [i915#4538] / [i915#5286])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][470] ([i915#5286]) -> [SKIP][471] ([i915#14544] / [i915#5286])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][472] ([i915#3638]) -> [SKIP][473] ([i915#14544] / [i915#3638])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][474] ([i915#3828]) -> [SKIP][475] ([i915#14544] / [i915#3828])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][476] -> [SKIP][477] ([i915#14544]) +17 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-rkl: [SKIP][478] ([i915#14098] / [i915#6095]) -> [SKIP][479] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][480] ([i915#12313] / [i915#14544]) -> [SKIP][481] ([i915#12313])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][482] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][483] ([i915#15582]) +1 other test incomplete
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][484] ([i915#12313]) -> [SKIP][485] ([i915#12313] / [i915#14544])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: [SKIP][486] ([i915#3742]) -> [SKIP][487] ([i915#14544] / [i915#3742])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_cdclk@plane-scaling.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-dg1: [SKIP][488] ([i915#11151] / [i915#7828]) -> [SKIP][489] ([i915#11151] / [i915#4423] / [i915#7828]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-rkl: [SKIP][490] ([i915#11151] / [i915#7828]) -> [SKIP][491] ([i915#11151] / [i915#14544] / [i915#7828])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][492] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#7828])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: [SKIP][494] ([i915#15865]) -> [SKIP][495] ([i915#14544] / [i915#15865])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_content_protection@atomic-dpms-hdcp14.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#15330]) -> [SKIP][497] ([i915#15330])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][499] ([i915#15330] / [i915#3116])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][500] ([i915#3555] / [i915#3804]) -> [SKIP][501] ([i915#14544] / [i915#3555] / [i915#3804])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][502] ([i915#3804]) -> [SKIP][503] ([i915#14544] / [i915#3804])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#1839]) -> [SKIP][505] ([i915#1839])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][506] ([i915#9934]) -> [SKIP][507] ([i915#14544] / [i915#9934]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: [SKIP][508] ([i915#15643]) -> [SKIP][509] ([i915#14544] / [i915#15643])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][510] ([i915#1825]) -> [SKIP][511] ([i915#14544] / [i915#1825]) +7 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] +14 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][514] ([i915#15990]) -> [SKIP][515] ([i915#15990] / [i915#4423])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#15102] / [i915#3023]) +2 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][518] ([i915#15102] / [i915#3458]) -> [SKIP][519] ([i915#10433] / [i915#15102] / [i915#3458])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#15102]) -> [SKIP][521] ([i915#15102]) +4 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear:
- shard-rkl: [SKIP][522] ([i915#15102]) -> [SKIP][523] ([i915#14544] / [i915#15102]) +4 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg1: [SKIP][524] ([i915#15102] / [i915#3458]) -> [SKIP][525] ([i915#15102] / [i915#3458] / [i915#4423])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#1825]) -> [SKIP][527] ([i915#1825]) +3 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][528] ([i915#15102] / [i915#3023]) -> [SKIP][529] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: [SKIP][530] ([i915#12713] / [i915#3555] / [i915#8228]) -> [SKIP][531] ([i915#3555] / [i915#8228]) +3 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-rkl: [SKIP][532] ([i915#15709]) -> [SKIP][533] ([i915#14544] / [i915#15709])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#15709]) -> [SKIP][535] ([i915#15709]) +2 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][536] ([i915#13958] / [i915#14544]) -> [SKIP][537] ([i915#13958])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#5354]) -> [SKIP][539] ([i915#5354])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#9340]) -> [SKIP][541] ([i915#3828])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][542] ([i915#15073]) -> [SKIP][543] ([i915#14544] / [i915#15073])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][544] ([i915#11520] / [i915#14544]) -> [SKIP][545] ([i915#11520]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-rkl: [SKIP][546] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][547] ([i915#1072] / [i915#9732]) +3 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-move.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-rkl: [SKIP][548] ([i915#1072] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_psr@fbc-psr-sprite-plane-move.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][550] ([i915#5289]) -> [SKIP][551] ([i915#14544] / [i915#5289])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-rkl: [SKIP][552] ([i915#14544] / [i915#3555]) -> [SKIP][553] ([i915#3555])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][554] ([i915#3555]) -> [SKIP][555] ([i915#14544] / [i915#3555]) +2 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-glk: [DMESG-FAIL][556] -> [ABORT][557] ([i915#13179])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][558] ([i915#13029] / [i915#15778]) -> [ABORT][559] ([i915#15778])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-4/igt@perf_pmu@module-unload.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][560] ([i915#9917]) -> [SKIP][561] ([i915#14544] / [i915#9917])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/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#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[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#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[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#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15967
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8888 -> IGTPW_15106
CI-20190529: 20190529
CI_DRM_18417: 835de80ce9b34b618442ba91483170201b50b553 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15106: c41e04fdc9167439e45f453db7d3db7495c7c53d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
[-- Attachment #2: Type: text/html, Size: 195235 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for Fix incorrect skips and improve cleanup (rev3)
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (5 preceding siblings ...)
2026-05-06 7:00 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-05-06 7:52 ` Patchwork
2026-05-06 12:54 ` ✓ i915.CI.Full: success " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-06 7:52 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 43441 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8888_FULL -> XEIGTPW_15106_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15106_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15106_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15106_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [PASS][1] -> [SKIP][2] +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-fullscreen.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010} (NEW):
- shard-bmg: NOTRUN -> [SKIP][3] +8 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-9/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][4] +11 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-7/igt@xe_wedged@wedged-mode-toggle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][7] ([Intel XE#2311]) -> [SKIP][8] +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][9] ([Intel XE#2313]) -> [SKIP][10] +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-pgflip-blt.html
New tests
---------
New tests have been introduced between XEIGT_8888_FULL and XEIGTPW_15106_FULL:
### New IGT tests (4) ###
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_15106_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7679])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7676])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#7084])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3432]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6974])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6974])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1424])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2320]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#5354])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2291] / [Intel XE#7343])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#4302])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4354] / [Intel XE#5882])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2244])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp.html
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2244]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6126] / [Intel XE#776])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2373] / [Intel XE#7344])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-9/igt@kms_feature_discovery@display-2x.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1421])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2316]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#301])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7178] / [Intel XE#7349])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-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-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7178] / [Intel XE#7351])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7179])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2312]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4141]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7905]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2311]) +24 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7865]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7061])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7061]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +28 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7061] / [Intel XE#7356])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7061] / [Intel XE#7356])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1470] / [Intel XE#2853])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7308])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7283])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7283]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5021] / [Intel XE#7377])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#3307])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7376] / [Intel XE#870])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1489]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2893] / [Intel XE#7304])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2387] / [Intel XE#7429])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-6/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7795])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#3904] / [Intel XE#7342])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6503])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1499])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#4227]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-3/igt@kms_vrr@max-min@pipe-a-edp-1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#1499])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-6/igt@kms_vrr@negative-basic.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_vrr@negative-basic.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7636]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7636]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#6321])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#7140])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_balancer@twice-cm-parallel-basic:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7482]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@xe_exec_balancer@twice-cm-parallel-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-multi-queue-prefetch:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7136]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7136]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic-smem:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#6874]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic-smem.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +10 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#7866]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-4/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#7138]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#7138]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#6964])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-3/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#6964])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2236] / [Intel XE#7590])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2284] / [Intel XE#7370])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#4650] / [Intel XE#7347])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#944]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#944])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_vfio@open-basic:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7724])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@xe_sriov_vfio@open-basic.html
* igt@xe_vm@overcommit-nonfault-vram-lr-defer:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7892])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-8/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [DMESG-WARN][117] ([Intel XE#5354]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][119] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][121] ([Intel XE#301]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [FAIL][123] ([Intel XE#5937]) -> [PASS][124] +2 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
#### Warnings ####
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [FAIL][125] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][126] ([Intel XE#7642])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-7/igt@kms_content_protection@legacy-hdcp14.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move:
- shard-lnl: [ABORT][127] -> [SKIP][128] ([Intel XE#7905])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][129] ([Intel XE#4141]) -> [SKIP][130] ([Intel XE#2312])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][131] ([Intel XE#2311]) -> [SKIP][132] ([Intel XE#2312]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][133] ([Intel XE#2313]) -> [SKIP][134] ([Intel XE#2312]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][135] ([Intel XE#656]) -> [SKIP][136] ([Intel XE#656] / [Intel XE#7905]) +229 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: [SKIP][137] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][138] ([Intel XE#3544])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8888/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/shard-lnl-2/igt@kms_hdr@brightness-with-hdr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8888 -> IGTPW_15106
IGTPW_15106: c41e04fdc9167439e45f453db7d3db7495c7c53d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4990-835de80ce9b34b618442ba91483170201b50b553: 835de80ce9b34b618442ba91483170201b50b553
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15106/index.html
[-- Attachment #2: Type: text/html, Size: 49373 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.Full: success for Fix incorrect skips and improve cleanup (rev3)
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (6 preceding siblings ...)
2026-05-06 7:52 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-05-06 12:54 ` Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-06 12:54 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 146890 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from IGT_8888_full -> IGTPW_15106_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_15106_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15106_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15106_full:
### IGT changes ###
#### Warnings ####
* igt@kms_hdr@bpc-switch-dpms:
- shard-snb: [SKIP][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-snb7/igt@kms_hdr@bpc-switch-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb5/igt@kms_hdr@bpc-switch-dpms.html
New tests
---------
New tests have been introduced between IGT_8888_full and IGTPW_15106_full:
### New IGT tests (36) ###
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-suspend@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-suspend@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_15106_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4873]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#13008])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb5/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#4771])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#4771])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4812])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#6344])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#6344])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][25] ([i915#11965]) +4 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#3281]) +9 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#14544] / [i915#3281]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +10 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][35] -> [INCOMPLETE][36] ([i915#13356]) +1 other test incomplete
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#2190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#284])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +10 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@read:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_mmap_wc@read.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@gem_pread@display.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gem_pread@display.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#13717] / [i915#14544])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#13398])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#13717])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#8411]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +13 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@gem_userptr_blits@unsync-overlap.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [ABORT][68] ([i915#5566])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#14118]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#14118]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#14118])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk10: NOTRUN -> [ABORT][78] ([i915#15342]) +1 other test abort
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_gt_init-enodev:
- shard-glk10: NOTRUN -> [SKIP][79] +135 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][80] ([i915#13029] / [i915#14545])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@i915_module_load@reload-no-display.html
- shard-snb: NOTRUN -> [DMESG-WARN][81] ([i915#14545])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2: NOTRUN -> [DMESG-WARN][82] ([i915#14545])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][84] -> [INCOMPLETE][85] ([i915#13356] / [i915#13820]) +1 other test incomplete
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#14498])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][87] -> [INCOMPLETE][88] ([i915#13356])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk2/igt@i915_pm_rpm@system-suspend.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#11681])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#11681])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#4387])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][92] ([i915#4817] / [i915#7443])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: [PASS][93] -> [INCOMPLETE][94] ([i915#4817])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][95] ([i915#4817])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4212]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][99] ([i915#1769]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][103] ([i915#1769])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5286]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#14544] / [i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#15733] / [i915#5138])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][113] +22 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638] / [i915#4423])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#12313]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#12313]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][121] +66 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6095]) +29 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#12313] / [i915#14544])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +34 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#12805])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#6095]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][130] ([i915#15582]) +1 other test incomplete
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +59 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6095]) +34 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#6095]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +98 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +86 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +149 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +4 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +8 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#15865]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#15330] / [i915#3116] / [i915#3299])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#15330] / [i915#3299])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330] / [i915#3299])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#15330] / [i915#3116])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#15330] / [i915#3299])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#15330])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#15330])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#15865])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_content_protection@lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#15865])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#15865]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#15865]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#13049])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#13049])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][163] -> [FAIL][164] ([i915#13566]) +4 other tests fail
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][165] -> [FAIL][166] ([i915#13566]) +9 other tests fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][167] ([i915#13566]) +2 other tests fail
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [FAIL][168] ([i915#13566]) +1 other test fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3555]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555]) +8 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8814]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9067])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4213])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#13691])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_display_modes@extended-mode-basic.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#13691])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#13691])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#13691])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#13691])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#13748])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#13748])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#8812])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#1839])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#1839])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#1839])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#1839])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-13/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#1839])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#658])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-busy-flip:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#9934])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_flip@2x-busy-flip.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9934]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#3637] / [i915#9934]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][201] ([i915#12745] / [i915#4839])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk11: NOTRUN -> [INCOMPLETE][202] ([i915#12745])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#14544] / [i915#9934]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9934]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8381])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#8381])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][208] ([i915#6113]) +1 other test incomplete
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][210] ([i915#12745] / [i915#4839])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][211] ([i915#12745])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][212] ([i915#12314] / [i915#12745] / [i915#6113])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#15643]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#15643])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#15643] / [i915#5190])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#15643]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#15643]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#15643]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#14544] / [i915#1825]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#15990] / [i915#8708]) +12 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#15991] / [i915#5354]) +23 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][223] ([i915#10056])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#10056])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#5439])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#15990]) +9 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: [PASS][227] -> [SKIP][228] ([i915#15989]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#15991]) +26 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][230] +100 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15991]) +34 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#5439])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-linear:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15989]) +28 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#15102])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15104] / [i915#15990])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15104] / [i915#15990])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15102] / [i915#3023]) +27 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3458]) +9 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15991] / [i915#1825]) +21 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#1825]) +51 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +7 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#15102]) +22 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#10055])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#10055])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#15102]) +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15990]) +18 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15990]) +9 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102]) +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#15989]) +13 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: [PASS][250] -> [SKIP][251] ([i915#15989])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15989]) +8 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15989]) +14 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15989]) +9 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15104] / [i915#15990]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-glk: NOTRUN -> [SKIP][257] +422 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#15102]) +21 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +7 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#10433] / [i915#15102] / [i915#3458])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][261] +65 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15990] / [i915#8708]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15989]) +24 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#15102]) +38 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][266] +49 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#16012]) +7 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#16012]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-snb: NOTRUN -> [FAIL][270] ([i915#16013]) +5 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#14543])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f} (NEW):
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#16011]) +8 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010} (NEW):
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#16011]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_hdr@invalid-hdr.html
* {igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010} (NEW):
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#16012]) +7 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-2/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* {igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010} (NEW):
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#16012]) +7 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#16011]) +9 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#16011]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][282] ([i915#15436]) +1 other test incomplete
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#16011]) +8 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#16011]) +6 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#13688])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#13688])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#15458])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#15460])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#15459])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#15458])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15458])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15458])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#6301])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#6301])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#6301])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][296] +54 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][297] +17 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][298] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-mtlp: [PASS][299] -> [DMESG-WARN][300] ([i915#16014])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#14712])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#15709]) +6 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#15709]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#15608]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#15608]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#15608]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#15709]) +4 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#15709]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15709]) +6 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][310] ([i915#13026]) +1 other test incomplete
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#13958])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#13958]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#13958])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15887] / [i915#9809])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#13046] / [i915#5354] / [i915#9423])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#15329]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15329] / [i915#6953]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15329]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#5354])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_pm_backlight@basic-brightness.html
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#5354])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#5354])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#9812])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#3828]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#15739])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#4077]) +8 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][326] -> [SKIP][327] ([i915#15073]) +2 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#15073])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#15073]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][331] -> [SKIP][332] ([i915#15073]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#6524])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#6524])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#11520]) +6 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#12316]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#11520]) +13 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][338] ([i915#11520]) +6 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#11520]) +4 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#11520]) +6 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520] / [i915#14544])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][342] ([i915#11520]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][343] ([i915#11520]) +10 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-glk11: NOTRUN -> [SKIP][345] ([i915#11520]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9683])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#9683])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4348])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +17 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +10 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-7/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9732]) +10 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#9688]) +12 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +29 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +8 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr@psr-sprite-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#12755] / [i915#15867])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#15867])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#5289])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#5289])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#5289]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][361] ([i915#13179]) +1 other test abort
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#3555])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#8809])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][364] +279 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-snb6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][365] ([i915#12276])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][366] -> [INCOMPLETE][367] ([i915#12276])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
- shard-rkl: [PASS][368] -> [ABORT][369] ([i915#15132]) +1 other test abort
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#11920] / [i915#14544])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#3555] / [i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#9906])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#9906])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#8808] / [i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9906]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#2435])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#2433])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: NOTRUN -> [FAIL][380] ([i915#4349]) +1 other test fail
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: [PASS][381] -> [FAIL][382] ([i915#4349]) +2 other tests fail
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-1/igt@perf_pmu@busy-double-start.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-6/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [FAIL][383] ([i915#12549] / [i915#6806]) +1 other test fail
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@frequency.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][384] -> [FAIL][385] ([i915#15997]) +1 other test fail
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [PASS][386] -> [FAIL][387] ([i915#15997]) +1 other test fail
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@bcs0:
- shard-mtlp: [PASS][388] -> [FAIL][389] ([i915#15997]) +2 other tests fail
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@bcs0.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all@bcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#8516])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3291] / [i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#9917])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][393] ([i915#13356]) -> [PASS][394] +2 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@gem_ccs@suspend-resume.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][395] ([i915#12392] / [i915#13356]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-8/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [FAIL][397] ([i915#15762]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [FAIL][399] ([i915#15762]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][401] ([i915#15762]) -> [PASS][402] +1 other test pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-5/igt@gem_exec_suspend@basic-s4-devices.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_linear_blits@normal:
- shard-dg1: [FAIL][403] ([i915#15391]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-14/igt@gem_linear_blits@normal.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-14/igt@gem_linear_blits@normal.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [INCOMPLETE][405] ([i915#13356]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][407] ([i915#12061]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-3/igt@i915_selftest@live@workarounds.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][409] ([i915#4817]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@i915_suspend@debugfs-reader.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-rkl: [FAIL][411] ([i915#15967]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][413] ([i915#15989]) -> [PASS][414] +5 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-glk: [SKIP][415] -> [PASS][416] +4 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][417] ([i915#9340]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][419] ([i915#15073]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][421] ([i915#15073]) -> [PASS][422] +1 other test pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][423] ([i915#14419]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
- shard-glk: [ABORT][425] ([i915#13179]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][427] ([i915#15106]) -> [PASS][428] +2 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-9/igt@kms_setmode@basic.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-3/igt@kms_setmode@basic.html
- shard-dg2: [FAIL][429] ([i915#15106]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-5/igt@kms_setmode@basic.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][431] ([i915#15106]) -> [PASS][432] +2 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][433] ([i915#12276]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][435] ([i915#4349]) -> [PASS][436] +4 other tests pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][437] ([i915#6335]) -> [SKIP][438] ([i915#14544] / [i915#6335])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][439] ([i915#280]) -> [SKIP][440] ([i915#14544] / [i915#280])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][441] ([i915#4525]) -> [SKIP][442] ([i915#14544] / [i915#4525]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][443] ([i915#15816]) -> [FAIL][444] ([i915#15944])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-tglu-5/igt@gem_exec_big@single.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#3281]) -> [SKIP][446] ([i915#3281]) +3 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: [SKIP][447] ([i915#3281]) -> [SKIP][448] ([i915#14544] / [i915#3281])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][449] ([i915#4613]) -> [SKIP][450] ([i915#14544] / [i915#4613])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][451] ([i915#14544] / [i915#4613]) -> [SKIP][452] ([i915#4613])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][453] ([i915#3282]) -> [SKIP][454] ([i915#14544] / [i915#3282]) +3 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#3282]) -> [SKIP][456] ([i915#3282]) +4 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#3297]) -> [SKIP][458] ([i915#3297])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@gem_userptr_blits@access-control.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][459] ([i915#3281] / [i915#3297]) -> [SKIP][460] ([i915#14544] / [i915#3281] / [i915#3297])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@gem_userptr_blits@relocations.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][461] ([i915#2527]) -> [SKIP][462] ([i915#14544] / [i915#2527])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#8399]) -> [SKIP][464] ([i915#8399])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][465] ([i915#5723]) -> [SKIP][466] ([i915#14544] / [i915#5723])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][467] ([i915#9531]) -> [SKIP][468] ([i915#14544] / [i915#9531])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#5286]) -> [SKIP][470] ([i915#5286]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg1: [SKIP][471] ([i915#4538] / [i915#5286]) -> [SKIP][472] ([i915#4423] / [i915#4538] / [i915#5286])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][473] ([i915#5286]) -> [SKIP][474] ([i915#14544] / [i915#5286])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][475] ([i915#3638]) -> [SKIP][476] ([i915#14544] / [i915#3638])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][477] ([i915#3828]) -> [SKIP][478] ([i915#14544] / [i915#3828])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][479] -> [SKIP][480] ([i915#14544]) +17 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-rkl: [SKIP][481] ([i915#14098] / [i915#6095]) -> [SKIP][482] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][483] ([i915#12313] / [i915#14544]) -> [SKIP][484] ([i915#12313])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][485] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][486] ([i915#15582]) +1 other test incomplete
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][487] ([i915#12313]) -> [SKIP][488] ([i915#12313] / [i915#14544])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: [SKIP][489] ([i915#3742]) -> [SKIP][490] ([i915#14544] / [i915#3742])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_cdclk@plane-scaling.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-dg1: [SKIP][491] ([i915#11151] / [i915#7828]) -> [SKIP][492] ([i915#11151] / [i915#4423] / [i915#7828]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-rkl: [SKIP][493] ([i915#11151] / [i915#7828]) -> [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][495] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][496] ([i915#11151] / [i915#7828])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: [SKIP][497] ([i915#15865]) -> [SKIP][498] ([i915#14544] / [i915#15865])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_content_protection@atomic-dpms-hdcp14.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#15330]) -> [SKIP][500] ([i915#15330])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][502] ([i915#15330] / [i915#3116])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][503] ([i915#3555] / [i915#3804]) -> [SKIP][504] ([i915#14544] / [i915#3555] / [i915#3804])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][505] ([i915#3804]) -> [SKIP][506] ([i915#14544] / [i915#3804])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#1839]) -> [SKIP][508] ([i915#1839])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][509] ([i915#9934]) -> [SKIP][510] ([i915#14544] / [i915#9934]) +2 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_flip@2x-wf_vblank-ts-check.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: [SKIP][511] ([i915#15643]) -> [SKIP][512] ([i915#14544] / [i915#15643])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][513] ([i915#1825]) -> [SKIP][514] ([i915#14544] / [i915#1825]) +7 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][515] ([i915#14544]) -> [SKIP][516] +14 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][517] ([i915#15990]) -> [SKIP][518] ([i915#15990] / [i915#4423])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][520] ([i915#15102] / [i915#3023]) +2 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][521] ([i915#15102] / [i915#3458]) -> [SKIP][522] ([i915#10433] / [i915#15102] / [i915#3458])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#15102]) -> [SKIP][524] ([i915#15102]) +4 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear:
- shard-rkl: [SKIP][525] ([i915#15102]) -> [SKIP][526] ([i915#14544] / [i915#15102]) +4 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg1: [SKIP][527] ([i915#15102] / [i915#3458]) -> [SKIP][528] ([i915#15102] / [i915#3458] / [i915#4423])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#1825]) -> [SKIP][530] ([i915#1825]) +3 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][531] ([i915#15102] / [i915#3023]) -> [SKIP][532] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: [SKIP][533] ([i915#12713] / [i915#3555] / [i915#8228]) -> [SKIP][534] ([i915#3555] / [i915#8228]) +3 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-mtlp-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-rkl: [SKIP][535] ([i915#15709]) -> [SKIP][536] ([i915#14544] / [i915#15709])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#15709]) -> [SKIP][538] ([i915#15709]) +2 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][539] ([i915#13958] / [i915#14544]) -> [SKIP][540] ([i915#13958])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#5354]) -> [SKIP][542] ([i915#5354])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#9340]) -> [SKIP][544] ([i915#3828])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][545] ([i915#15073]) -> [SKIP][546] ([i915#14544] / [i915#15073])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][547] ([i915#11520] / [i915#14544]) -> [SKIP][548] ([i915#11520]) +1 other test skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-rkl: [SKIP][549] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][550] ([i915#1072] / [i915#9732]) +3 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-move.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-rkl: [SKIP][551] ([i915#1072] / [i915#9732]) -> [SKIP][552] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_psr@fbc-psr-sprite-plane-move.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][553] ([i915#5289]) -> [SKIP][554] ([i915#14544] / [i915#5289])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#3555]) -> [SKIP][556] ([i915#3555])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][557] ([i915#3555]) -> [SKIP][558] ([i915#14544] / [i915#3555]) +2 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-glk: [DMESG-FAIL][559] -> [ABORT][560] ([i915#13179])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-glk9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][561] ([i915#13029] / [i915#15778]) -> [ABORT][562] ([i915#15778])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-dg2-4/igt@perf_pmu@module-unload.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-dg2-1/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][563] ([i915#9917]) -> [SKIP][564] ([i915#14544] / [i915#9917])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8888/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/shard-rkl-6/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#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[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#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[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#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15967
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013
[i915#16014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16014
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8888 -> IGTPW_15106
CI-20190529: 20190529
CI_DRM_18417: 835de80ce9b34b618442ba91483170201b50b553 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15106: c41e04fdc9167439e45f453db7d3db7495c7c53d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8888: 77f31f709ee65bb20ad7d64d8aa012ba7688b112 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15106/index.html
[-- Attachment #2: Type: text/html, Size: 196700 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-06 12:54 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-06 4:15 [PATCH i-g-t v3 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
2026-05-06 4:15 ` [PATCH i-g-t v3 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
2026-05-06 4:50 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev3) Patchwork
2026-05-06 4:54 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-06 7:00 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-06 7:52 ` ✗ Xe.CI.FULL: " Patchwork
2026-05-06 12:54 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox