* [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup
@ 2026-05-05 4:01 Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Pranay Samala @ 2026-05-05 4:01 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 | 210 +++++++++++++++++++++---------------------------
1 file changed, 90 insertions(+), 120 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
@ 2026-05-05 4:01 ` Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Pranay Samala @ 2026-05-05 4:01 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)
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 b215b0e6c..c4680298a 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -123,12 +123,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);
}
@@ -244,20 +246,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
@@ -265,8 +266,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. */
@@ -305,7 +306,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. */
@@ -490,20 +490,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);
fill_hdr_output_metadata_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);
set_hdr_output_metadata(data, NULL);
igt_output_set_prop_value(data->output, IGT_CONNECTOR_MAX_BPC, 8);
@@ -566,7 +565,6 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
cleanup:
test_fini(data);
- igt_remove_fb(data->fd, &afb);
}
/* Fills some test values for HDR metadata targeting SDR. */
@@ -605,19 +603,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);
@@ -690,7 +687,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, igt_output_t *output)
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 2/3] tests/kms_hdr: Move test_fini() for proper cleanup
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
@ 2026-05-05 4:01 ` Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Pranay Samala @ 2026-05-05 4:01 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)
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, 5 insertions(+), 9 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index c4680298a..56d0d2cd2 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -304,8 +304,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. */
@@ -367,6 +365,8 @@ 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 */
@@ -527,7 +527,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) {
@@ -562,9 +562,6 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
igt_force_dsc_disable(data->fd, output->name);
igt_assert(igt_is_force_dsc_disabled(data->fd, output->name));
}
-
-cleanup:
- test_fini(data);
}
/* Fills some test values for HDR metadata targeting SDR. */
@@ -686,7 +683,6 @@ static void test_static_swap(data_t *data, igt_crtc_t *crtc,
igt_assert(igt_is_force_dsc_disabled(data->fd, output->name));
}
- test_fini(data);
}
static void test_invalid_metadata_sizes(data_t *data, igt_output_t *output)
@@ -700,8 +696,6 @@ static void test_invalid_metadata_sizes(data_t *data, igt_output_t *output)
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);
}
/* Returns true if an output supports HDR metadata property. */
@@ -815,6 +809,8 @@ static void test_hdr(data_t *data, uint32_t flags)
if (flags & TEST_INVALID_METADATA_SIZES)
test_invalid_metadata_sizes(data, output);
}
+
+ test_fini(data);
}
/* One pipe is enough */
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t v2 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
@ 2026-05-05 4:01 ` Pranay Samala
2026-05-05 5:41 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Pranay Samala @ 2026-05-05 4:01 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)
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 | 166 +++++++++++++++++++++---------------------------
1 file changed, 72 insertions(+), 94 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index 56d0d2cd2..a170a5b90 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -323,17 +323,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);
@@ -343,17 +332,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;
@@ -361,10 +340,23 @@ 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);
}
@@ -715,43 +707,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) || !has_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) && is_panel_hdr(data, output)) {
- igt_info("%s: Can't run negative test on HDR panel.\n",
- igt_output_name(output));
- continue;
- }
-
- if ((flags & ~TEST_INVALID_HDR) && !is_panel_hdr(data, 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;
@@ -761,42 +718,63 @@ static void test_hdr(data_t *data, uint32_t flags)
prepare_test(data, output,
crtc);
- /* Signal HDR requirement via metadata */
- fill_hdr_output_metadata_st2084(&hdr);
- set_hdr_output_metadata(data, &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;
-
- set_hdr_output_metadata(data, 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) && has_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(!is_panel_hdr(data, output),
+ "%s: Can't run negative test on "
+ "HDR panel.\n",
+ igt_output_name(output));
+
+ if (!(flags & TEST_INVALID_HDR))
+ igt_require_f(is_panel_hdr(data, 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 */
+ fill_hdr_output_metadata_st2084(&hdr);
+ set_hdr_output_metadata(data, &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;
+
+ set_hdr_output_metadata(data, 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] 8+ messages in thread
* ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev2)
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (2 preceding siblings ...)
2026-05-05 4:01 ` [PATCH i-g-t v2 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
@ 2026-05-05 5:41 ` Patchwork
2026-05-05 5:54 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-05 5:41 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3852 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from IGT_8884 -> IGTPW_15098
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15098 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +79 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#180])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Possible fixes ####
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][9] ([i915#14204]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/bat-atsm-1/igt@i915_selftest@live@mman.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/bat-atsm-1/igt@i915_selftest@live@mman.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][11] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][12] ([i915#12061])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8884/bat-atsm-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/bat-atsm-1/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8884 -> IGTPW_15098
* Linux: CI_DRM_18410 -> CI_DRM_18411
CI-20190529: 20190529
CI_DRM_18410: 5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18411: 94d56a898a2db27f841b17f6966a81ba502fe63c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15098: b040700d1fb5deb15c08a1bc0f98caaf1370feac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8884: 2e185bca126c4d135fe7fe579d0a3a177f150813 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/index.html
[-- Attachment #2: Type: text/html, Size: 5037 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Fix incorrect skips and improve cleanup (rev2)
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (3 preceding siblings ...)
2026-05-05 5:41 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev2) Patchwork
@ 2026-05-05 5:54 ` Patchwork
2026-05-05 9:39 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-05 12:21 ` ✗ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-05 5:54 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2104 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8884_BAT -> XEIGTPW_15098_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 12)
------------------------------
Missing (1): bat-bmg-1
Known issues
------------
Here are the changes found in XEIGTPW_15098_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_8884/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_15098/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_8884/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_15098/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_8884 -> IGTPW_15098
* Linux: xe-4983-5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e -> xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c
IGTPW_15098: b040700d1fb5deb15c08a1bc0f98caaf1370feac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8884: 2e185bca126c4d135fe7fe579d0a3a177f150813 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4983-5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e: 5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e
xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c: 94d56a898a2db27f841b17f6966a81ba502fe63c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/index.html
[-- Attachment #2: Type: text/html, Size: 2778 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for Fix incorrect skips and improve cleanup (rev2)
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (4 preceding siblings ...)
2026-05-05 5:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-05 9:39 ` Patchwork
2026-05-05 12:21 ` ✗ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-05 9:39 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 155304 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18411_full -> IGTPW_15098_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15098_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15098_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_15098/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_15098_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][1] +19 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][2] +17 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/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_15098/shard-snb5/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] +19 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f:
- shard-mtlp: NOTRUN -> [SKIP][5] +11 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb16161616f.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][6] +19 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-snb: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-snb6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][9] -> [DMESG-WARN][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-6/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@kms_hdr@bpc-switch-dpms:
- shard-snb: [SKIP][11] -> [FAIL][12] +2 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-snb6/igt@kms_hdr@bpc-switch-dpms.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][13] ([i915#12713]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][15] ([i915#1187] / [i915#12713]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][17] ([i915#12713]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][19] ([i915#12713]) -> [SKIP][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
New tests
---------
New tests have been introduced between CI_DRM_18411_full and IGTPW_15098_full:
### New IGT tests (40) ###
* 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-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 : 3 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 3 skip(s)
- Exec time: [0.0, 0.00] 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
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-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 : 4 skip(s)
- Exec time: [0.0, 15.40] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 4 skip(s)
- Exec time: [0.0, 15.86] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [15.31] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [15.31] 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-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-4-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-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-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-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-4-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
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_15098_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#8411]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8411])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#11078])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#11078])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#13008])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#7697])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#6335])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#8562])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#8562])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#13356])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#8555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@gem_ctx_persistence@hang.html
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8555])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@gem_ctx_persistence@hang.html
- shard-snb: NOTRUN -> [SKIP][38] ([i915#1099])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb5/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#14544] / [i915#280])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#280]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#280])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#280])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4771])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-5/igt@gem_exec_balancer@bonded-dual.html
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4771])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4771])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4812])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4525]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4525]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][53] -> [FAIL][54] ([i915#15816])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-4/igt@gem_exec_big@single.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@gem_exec_big@single.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3711])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#5107])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-scanout:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4537] / [i915#4812])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +8 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#12193])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4565])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4613]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#284])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +12 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@gem_mmap_wc@bad-object.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@gem_pread@display.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@gem_pread@display.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@gem_pread@display.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: [PASS][80] -> [SKIP][81] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][83] +512 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#15657])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [PASS][95] -> [INCOMPLETE][96] ([i915#13356])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk2/igt@gem_workarounds@suspend-resume-context.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13356] / [i915#14586])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk5/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#14544]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#2856]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][101] +145 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#14544] / [i915#2527])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#11527]) +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#11527]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-4/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#11527]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#14118]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#15479]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][113] ([i915#15481])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][114] ([i915#15342]) +1 other test abort
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload:
- shard-snb: [PASS][115] -> [DMESG-WARN][116] ([i915#14545])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-snb6/igt@i915_module_load@reload.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb5/igt@i915_module_load@reload.html
- shard-tglu: NOTRUN -> [DMESG-WARN][117] ([i915#14545])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@i915_module_load@reload.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@i915_pm_freq_api@freq-reset.html
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#8399])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#8399])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][121] -> [INCOMPLETE][122] ([i915#13356] / [i915#13820]) +1 other test incomplete
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][123] +21 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#7984])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@i915_power@sanity.html
* igt@i915_selftest@live:
- shard-mtlp: [PASS][125] -> [DMESG-FAIL][126] ([i915#12061] / [i915#15560])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-4/igt@i915_selftest@live.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][127] -> [DMESG-FAIL][128] ([i915#12061])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [PASS][129] -> [DMESG-WARN][130] ([i915#14545]) +2 other tests dmesg-warn
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-4/igt@i915_suspend@basic-s2idle-without-i915.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@i915_suspend@basic-s2idle-without-i915.html
- shard-dg1: [PASS][131] -> [DMESG-WARN][132] ([i915#14545]) +1 other test dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][133] ([i915#4817] / [i915#7443])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7707])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#4212])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4212])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4212])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#5190])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][139] ([i915#14888]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#9531])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#5286]) +6 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5286]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#5286]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#5286]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3638]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3638]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3828]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3828])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][149] +9 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +6 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][153] +50 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +215 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#6095]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +54 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +9 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#6095]) +87 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][161] +65 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-glk11: NOTRUN -> [SKIP][162] +125 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#12805])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#6095]) +21 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][165] ([i915#15582]) +1 other test incomplete
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][166] ([i915#15582]) +1 other test incomplete
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#14098] / [i915#6095]) +54 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/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-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#12313])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#6095]) +120 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6095]) +19 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3742])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3742])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +8 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +10 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +7 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#14544] / [i915#7828])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][181] -> [SKIP][182] ([i915#12655] / [i915#3555])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-10/igt@kms_color@deep-color.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#9979])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#15865]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_content_protection@atomic.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#15865] / [i915#4423])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_content_protection@atomic.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#15865])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#14544] / [i915#15865])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#15865])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#15330])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#15330]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#15865]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_content_protection@type1.html
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#15865]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8814])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][194] -> [FAIL][195] ([i915#13566]) +7 other tests fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][197] ([i915#13566]) +4 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#3555]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8814])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][201] -> [FAIL][202] ([i915#13566]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13049])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#13049])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][207] ([i915#12358] / [i915#14152] / [i915#7882])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html
- shard-rkl: [PASS][208] -> [INCOMPLETE][209] ([i915#12358] / [i915#14152])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][210] ([i915#12358] / [i915#14152])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][211] ([i915#12358] / [i915#14152])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#4103]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#13046] / [i915#5354]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#9809]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9067])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#4103])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#4103] / [i915#4213])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#4103] / [i915#4213])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4213])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3804])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#13749])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#13749])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#13707])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8812])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8812])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#3840])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#9878])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#1839])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#1839])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#1839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_feature_discovery@display-3x.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#1839])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#658])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +11 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#9934])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][239] -> [FAIL][240] ([i915#13027]) +2 other tests fail
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#8381]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#8381])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8381])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12745] / [i915#4839])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12745])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#3637] / [i915#9934]) +8 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3637] / [i915#9934]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@kms_flip@2x-nonexisting-fb.html
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9934]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#3637] / [i915#9934]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [FAIL][250] ([i915#10826]) +1 other test fail
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][251] ([i915#12745] / [i915#4839] / [i915#6113])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][253] ([i915#12314] / [i915#12745])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][254] ([i915#12745] / [i915#6113])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15643]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#15643]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#15643]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15643]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15643])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][261] -> [SKIP][262] ([i915#15672])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-8/igt@kms_force_connector_basic@force-edid.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#15104] / [i915#15990]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#15104] / [i915#15990])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15990] / [i915#8708]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +32 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15991] / [i915#5354]) +23 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#15102]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#10433] / [i915#15102] / [i915#3458])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15102] / [i915#3458]) +9 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15990] / [i915#8708]) +9 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][272] +23 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15990] / [i915#8708]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][274] +21 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15991] / [i915#1825]) +9 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15102] / [i915#3023]) +21 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#10055])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#10055])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#15102]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#15102]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#15102]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15102]) +25 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#14544] / [i915#15102])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#15102] / [i915#3458]) +14 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#1825]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_hdr@static-swap.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#15459])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#15458])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#15458])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#15458])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#15458])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#15459])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#15638] / [i915#15722])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#15815])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#6301])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#6301])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#6301])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#6301])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#14712])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#15709]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#15709])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#15608]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#15709]) +4 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#15709]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#15709]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15709])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#15608]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#15608]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#15608]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][315] ([i915#10647] / [i915#12169])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][316] ([i915#10647]) +1 other test fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#13958]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#13958])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-none.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#13958] / [i915#14544])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#13958])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#13958])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#14259])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#14259])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#14259])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#6953] / [i915#9423])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#6953])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#6953])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#6953])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#15329] / [i915#6953])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#15329]) +5 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#5354])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#12343])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-10/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#5354])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#3828]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#3828])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#3828])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][337] ([i915#15752])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][338] ([i915#15752])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#15948])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#9340])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#9340])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#9340])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#8430])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][344] -> [SKIP][345] ([i915#15073]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#15073])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#15073])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#15073])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][349] -> [DMESG-WARN][350] ([i915#4423])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-12/igt@kms_pm_rpm@i2c.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [PASS][351] -> [SKIP][352] ([i915#15073])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][353] -> [SKIP][354] ([i915#15073]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@pm-caching:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#4077]) +7 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_pm_rpm@pm-caching.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][356] -> [INCOMPLETE][357] ([i915#10553])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk5/igt@kms_pm_rpm@system-suspend-modeset.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-rkl: [PASS][358] -> [INCOMPLETE][359] ([i915#14419])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#6524])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][361] ([i915#11520]) +3 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk11/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#11520]) +7 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][363] ([i915#11520]) +3 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#11520]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9808])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#11520] / [i915#14544])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12316]) +4 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#11520]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#11520]) +9 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#11520]) +7 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][371] ([i915#11520]) +19 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#9683])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9683])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][374] ([i915#9683])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#4348])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#9732]) +14 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#9732]) +24 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#9688]) +4 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#9732]) +9 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#9732]) +16 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#9732]) +9 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-12/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#4884])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#5289])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#5289])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#12755] / [i915#15867] / [i915#5190]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#12755] / [i915#15867])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][388] ([i915#13179]) +1 other test abort
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][389] -> [FAIL][390] ([i915#15106]) +2 other tests fail
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][391] ([i915#10959])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#14544] / [i915#8623])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#8623])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][394] ([i915#12276]) +1 other test incomplete
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
- shard-glk10: NOTRUN -> [INCOMPLETE][395] ([i915#12276]) +1 other test incomplete
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk10/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-snb: [PASS][396] -> [ABORT][397] ([i915#15840]) +1 other test abort
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-snb6/igt@kms_vblank@ts-continuation-suspend.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-snb6/igt@kms_vblank@ts-continuation-suspend.html
- shard-tglu: [PASS][398] -> [ABORT][399] ([i915#15840]) +1 other test abort
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-6/igt@kms_vblank@ts-continuation-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-5/igt@kms_vblank@ts-continuation-suspend.html
- shard-glk11: NOTRUN -> [INCOMPLETE][400] ([i915#12276]) +1 other test incomplete
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][401] ([i915#15243] / [i915#3555])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#9906])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#9906])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_vrr@max-min.html
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#9906])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-18/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][405] ([i915#9906]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@kms_vrr@max-min.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#8808] / [i915#9906])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#9906])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][408] +7 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: NOTRUN -> [SKIP][409] ([i915#2436])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#2436])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][411] ([i915#2434])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [ABORT][412] ([i915#13029] / [i915#15778])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][413] ([i915#3708] / [i915#4077])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#3708] / [i915#4077])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][415] ([i915#3708] / [i915#4077])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-15/igt@prime_vgem@basic-fence-mmap.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [FAIL][416] ([i915#12910]) +9 other tests fail
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][417] ([i915#14544] / [i915#9917])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][418] ([i915#13356]) -> [PASS][419] +3 other tests pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][420] ([i915#13356]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk3/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [DMESG-WARN][422] ([i915#4391] / [i915#4423]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-18/igt@gem_eio@in-flight-suspend.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-14/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-tglu: [DMESG-WARN][424] ([i915#13363]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-4/igt@gem_eio@kms.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-4/igt@gem_eio@kms.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [ABORT][426] ([i915#15131]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][428] ([i915#13790] / [i915#2681]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-tglu: [DMESG-WARN][430] ([i915#14545]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-3/igt@i915_suspend@basic-s2idle-without-i915.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-4/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][432] ([i915#4817]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: [INCOMPLETE][434] ([i915#4817]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-glk1/igt@i915_suspend@fence-restore-untiled.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-glk5/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][436] ([i915#15726]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-1/igt@kms_3d@basic.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-3/igt@kms_3d@basic.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][438] ([i915#5956]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][440] ([i915#14694] / [i915#15582]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_color@invalid-ctm-matrix-sizes:
- shard-dg1: [DMESG-WARN][442] ([i915#4423]) -> [PASS][443] +1 other test pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-18/igt@kms_color@invalid-ctm-matrix-sizes.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-16/igt@kms_color@invalid-ctm-matrix-sizes.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][444] ([i915#13566]) -> [PASS][445] +1 other test pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][446] ([i915#13566]) -> [PASS][447] +1 other test pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [SKIP][448] ([i915#15672]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2: [FAIL][450] ([i915#15389] / [i915#6880]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][452] ([i915#15073]) -> [PASS][453] +2 other tests pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][454] ([i915#15073]) -> [PASS][455]
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][456] ([i915#15073]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#8411]) -> [SKIP][459] ([i915#8411])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][460] ([i915#7697]) -> [SKIP][461] ([i915#14544] / [i915#7697])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][463] ([i915#3555] / [i915#9323])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][464] ([i915#6344]) -> [SKIP][465] ([i915#14544] / [i915#6344])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][466] ([i915#3281]) -> [SKIP][467] ([i915#14544] / [i915#3281]) +3 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3281]) -> [SKIP][469] ([i915#3281]) +3 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#2190]) -> [SKIP][471] ([i915#2190])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#4613]) -> [SKIP][473] ([i915#4613])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][474] ([i915#3282]) -> [SKIP][475] ([i915#14544] / [i915#3282]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#3297]) -> [SKIP][477] ([i915#3297])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][478] ([i915#3297]) -> [SKIP][479] ([i915#14544] / [i915#3297])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][480] ([i915#2527]) -> [SKIP][481] ([i915#14544] / [i915#2527])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][482] ([i915#11814]) -> [ABORT][483] ([i915#11814] / [i915#15481]) +1 other test abort
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-17/igt@i915_module_load@fault-injection.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-17/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][484] ([i915#8399]) -> [SKIP][485] ([i915#14544] / [i915#8399])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#6245]) -> [SKIP][487] ([i915#6245])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@i915_query@hwconfig_table.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][488] ([i915#12454] / [i915#12712]) -> [SKIP][489] ([i915#12454] / [i915#12712] / [i915#14544])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][490] ([i915#5286]) -> [SKIP][491] ([i915#14544] / [i915#5286]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#5286]) -> [SKIP][493] ([i915#5286]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][494] ([i915#3638]) -> [SKIP][495] ([i915#14544] / [i915#3638]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#3638]) -> [SKIP][497] ([i915#3638])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][498] ([i915#12313]) -> [SKIP][499] ([i915#12313] / [i915#14544])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][500] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][501] ([i915#14098] / [i915#6095]) +4 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#6095]) -> [SKIP][503] ([i915#6095]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][504] ([i915#14098] / [i915#6095]) -> [SKIP][505] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][506] ([i915#6095]) -> [SKIP][507] ([i915#14544] / [i915#6095]) +3 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][508] ([i915#12805] / [i915#14544]) -> [SKIP][509] ([i915#12805])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][510] ([i915#12313] / [i915#14544]) -> [SKIP][511] ([i915#12313])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#3742]) -> [SKIP][513] ([i915#3742])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: [SKIP][514] -> [SKIP][515] ([i915#14544]) +8 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-3/igt@kms_chamelium_color@ctm-green-to-red.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][516] ([i915#11151] / [i915#7828]) -> [SKIP][517] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][518] ([i915#15865]) -> [SKIP][519] ([i915#14544] / [i915#15865])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_content_protection@suspend-resume.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][520] ([i915#13049]) -> [SKIP][521] ([i915#13049] / [i915#14544])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][522] ([i915#4103]) -> [SKIP][523] ([i915#14544] / [i915#4103])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#9723]) -> [SKIP][525] ([i915#9723])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][526] ([i915#13707]) -> [SKIP][527] ([i915#13707] / [i915#14544])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][529] ([i915#3555] / [i915#3840])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#3955]) -> [SKIP][531] ([i915#3955])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][532] ([i915#9934]) -> [SKIP][533] ([i915#14544] / [i915#9934]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#9934]) -> [SKIP][535] ([i915#9934]) +3 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][536] ([i915#6113]) -> [ABORT][537] ([i915#15132]) +1 other test abort
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#15643]) -> [SKIP][539] ([i915#15643]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][540] ([i915#15643]) -> [SKIP][541] ([i915#14544] / [i915#15643]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][542] ([i915#1825]) -> [SKIP][543] ([i915#14544] / [i915#1825]) +13 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][544] ([i915#15102]) -> [SKIP][545] ([i915#14544] / [i915#15102]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: [SKIP][546] -> [SKIP][547] ([i915#4423])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#1825]) -> [SKIP][549] ([i915#1825]) +10 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: [SKIP][550] ([i915#15102] / [i915#3023]) -> [SKIP][551] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: [SKIP][552] ([i915#15990] / [i915#8708]) -> [SKIP][553] ([i915#15990] / [i915#4423] / [i915#8708])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][554] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][555] ([i915#15102] / [i915#3458])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][556] ([i915#9766]) -> [SKIP][557] ([i915#14544] / [i915#9766])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][559] ([i915#15102] / [i915#3023]) +9 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][560] ([i915#15102] / [i915#3458]) -> [SKIP][561] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][562] ([i915#12713]) -> [SKIP][563] ([i915#14543])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: [SKIP][564] ([i915#12713] / [i915#3555] / [i915#8228]) -> [SKIP][565] ([i915#3555] / [i915#8228]) +3 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-mtlp-7/igt@kms_hdr@static-toggle-dpms.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][566] ([i915#6301]) -> [SKIP][567] ([i915#14544] / [i915#6301])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_panel_fitting@legacy.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: [SKIP][568] ([i915#14544]) -> [SKIP][569] +7 other tests skip
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: [SKIP][570] ([i915#15709]) -> [SKIP][571] ([i915#14544] / [i915#15709]) +2 other tests skip
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][572] ([i915#14544] / [i915#15709]) -> [SKIP][573] ([i915#15709]) +2 other tests skip
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][574] ([i915#14544] / [i915#3555]) -> [SKIP][575] ([i915#3555]) +1 other test skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][576] ([i915#13958]) -> [SKIP][577] ([i915#13958] / [i915#14544])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-yf.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][578] ([i915#14259] / [i915#14544]) -> [SKIP][579] ([i915#14259])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][580] ([i915#15329]) -> [SKIP][581] ([i915#14544] / [i915#15329]) +3 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][582] ([i915#5354]) -> [SKIP][583] ([i915#14544] / [i915#5354])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_pm_backlight@fade.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [SKIP][584] ([i915#15073]) -> [SKIP][585] ([i915#12916])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][586] ([i915#15403]) -> [SKIP][587] ([i915#14544] / [i915#15403])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-2/igt@kms_pm_rpm@package-g7.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][588] ([i915#11520]) -> [SKIP][589] ([i915#11520] / [i915#14544])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][590] ([i915#11520] / [i915#14544]) -> [SKIP][591] ([i915#11520]) +1 other test skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg1: [SKIP][592] ([i915#11520] / [i915#4423]) -> [SKIP][593] ([i915#11520])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-psr-dpms:
- shard-rkl: [SKIP][594] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][595] ([i915#1072] / [i915#9732]) +8 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-8/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][596] ([i915#1072] / [i915#9732]) -> [SKIP][597] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: [SKIP][598] ([i915#15867]) -> [SKIP][599] ([i915#12755] / [i915#15867])
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: [SKIP][600] ([i915#3555]) -> [SKIP][601] ([i915#14544] / [i915#3555]) +1 other test skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][602] ([i915#8623]) -> [SKIP][603] ([i915#14544] / [i915#8623])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][604] ([i915#15243] / [i915#3555]) -> [SKIP][605] ([i915#14544] / [i915#15243] / [i915#3555])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-7/igt@kms_vrr@flip-basic.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][606] ([i915#14544] / [i915#2433]) -> [SKIP][607] ([i915#2433])
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#9917]) -> [SKIP][609] ([i915#9917])
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18411/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[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#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[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#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#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#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[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#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8884 -> IGTPW_15098
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18411: 94d56a898a2db27f841b17f6966a81ba502fe63c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15098: b040700d1fb5deb15c08a1bc0f98caaf1370feac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8884: 2e185bca126c4d135fe7fe579d0a3a177f150813 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15098/index.html
[-- Attachment #2: Type: text/html, Size: 206620 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for Fix incorrect skips and improve cleanup (rev2)
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (5 preceding siblings ...)
2026-05-05 9:39 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-05-05 12:21 ` Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2026-05-05 12:21 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 62276 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup (rev2)
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8884_FULL -> XEIGTPW_15098_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15098_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15098_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_15098_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010} (NEW):
- shard-bmg: NOTRUN -> [SKIP][1] +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/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][2] +11 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][3] -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-9/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
New tests
---------
New tests have been introduced between XEIGT_8884_FULL and XEIGTPW_15098_FULL:
### New IGT tests (6) ###
* 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
* igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_15098_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#6779])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@core_hotunplug@hotunplug-rescan.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
* igt@fbdev@read:
- shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#7859])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@fbdev@read.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@fbdev@read.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1407]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7059] / [Intel XE#7085])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#607] / [Intel XE#7361])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#7679])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7676])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.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_15098/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652]) +17 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2390] / [Intel XE#6974])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6974])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321] / [Intel XE#7355]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2286] / [Intel XE#6035])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4294] / [Intel XE#7477])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2244])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#3321]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][37] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][38] ([Intel XE#301])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#301])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-bmg: [PASS][41] -> [DMESG-FAIL][42] ([Intel XE#5208])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_flip@flip-vs-rmfb.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-rmfb@a-hdmi-a3:
- shard-bmg: [PASS][43] -> [DMESG-FAIL][44] ([Intel XE#5545])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@a-hdmi-a3.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_flip@flip-vs-rmfb@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7179]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397] / [Intel XE#7385])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4141]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6312]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#656]) +19 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7061] / [Intel XE#7356])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +15 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#6557] / [Intel XE#6703]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-9/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7283])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7283])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#5020] / [Intel XE#7348])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4608])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4608] / [Intel XE#7304])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1489]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#7345])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#4609])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [PASS][73] -> [SKIP][74] ([Intel XE#4692] / [Intel XE#7508]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3904] / [Intel XE#7342])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6503])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-10/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#362] / [Intel XE#5848])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#330] / [Intel XE#5857])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1499])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#7638])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1499])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6703]) +9 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7636]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug@read-metadata:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7636]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@xe_eudebug@read-metadata.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][87] -> [INCOMPLETE][88] ([Intel XE#6321])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7140])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@xe_evict@evict-small-external-multi-queue.html
* igt@xe_exec_balancer@once-cm-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7482]) +8 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@xe_exec_balancer@once-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@many-basic-defer-mmap:
- shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#6703]) +128 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-8/igt@xe_exec_basic@many-basic-defer-mmap.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_basic@many-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7136]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7136]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6874]) +13 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-1/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-priority:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#6874]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-priority.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7866])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_reset@multi-queue-cat-error:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7866])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@xe_exec_reset@multi-queue-cat-error.html
* igt@xe_exec_system_allocator@twice-large-malloc-bo-unmap:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-malloc-bo-unmap.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#7138]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#7138]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-5/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6964])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6964])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#7622])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_page_reclaim@boundary-split:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7793])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@xe_page_reclaim@boundary-split.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2245] / [Intel XE#7590])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic-exec:
- 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_15098/shard-lnl-8/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2284] / [Intel XE#7370])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-2/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-basic:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#584] / [Intel XE#7369])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2284] / [Intel XE#7370])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#4733] / [Intel XE#7417])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#944]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-5/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#944])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4273])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vfio@bind-unbind-vfs:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#7724])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-1/igt@xe_sriov_vfio@bind-unbind-vfs.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][121] ([Intel XE#7445]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [FAIL][123] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [FAIL][125] ([Intel XE#6078]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [INCOMPLETE][127] -> [PASS][128] +3 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][129] ([Intel XE#301]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][131] ([Intel XE#7308]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [ABORT][133] -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][135] -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-a-hdmi-a-3.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-a-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-c-hdmi-a-3:
- shard-bmg: [ABORT][137] ([Intel XE#5545]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-c-hdmi-a-3.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4@pipe-b-dp-2-pipe-c-hdmi-a-3.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][139] ([Intel XE#2142]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][141] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-9/igt@xe_survivability@runtime-survivability.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][143] ([Intel XE#2327]) -> [SKIP][144] ([Intel XE#6703])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][145] ([Intel XE#1124]) -> [SKIP][146] ([Intel XE#6703]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: [SKIP][147] ([Intel XE#367]) -> [SKIP][148] ([Intel XE#6703])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
- shard-bmg: [SKIP][149] ([Intel XE#2887]) -> [SKIP][150] ([Intel XE#6703]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-8/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][151] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][152] ([Intel XE#6703])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-10/igt@kms_chamelium_color@ctm-0-50.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: [SKIP][153] ([Intel XE#2252]) -> [SKIP][154] ([Intel XE#6703]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: [SKIP][155] ([Intel XE#2320]) -> [SKIP][156] ([Intel XE#6703]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: [SKIP][157] ([Intel XE#4354] / [Intel XE#5882]) -> [SKIP][158] ([Intel XE#6703])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: [SKIP][159] ([Intel XE#2244]) -> [SKIP][160] ([Intel XE#6703])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: [SKIP][161] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][162] ([Intel XE#6703]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][163] ([Intel XE#2311]) -> [SKIP][164] ([Intel XE#6703]) +7 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][165] ([Intel XE#4141]) -> [SKIP][166] ([Intel XE#6703]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][167] ([Intel XE#2313]) -> [SKIP][168] ([Intel XE#6703]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: [SKIP][169] ([Intel XE#5812] / [Intel XE#656]) -> [SKIP][170] ([Intel XE#656]) +209 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: [SKIP][171] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][172] ([Intel XE#3544])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: [SKIP][173] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][174] ([Intel XE#3544])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][175] ([Intel XE#7283]) -> [SKIP][176] ([Intel XE#6703])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][177] ([Intel XE#7376] / [Intel XE#870]) -> [SKIP][178] ([Intel XE#6703])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][179] ([Intel XE#1489]) -> [SKIP][180] ([Intel XE#6703]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@pr-sprite-render:
- shard-bmg: [SKIP][181] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][182] ([Intel XE#6703]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-10/igt@kms_psr@pr-sprite-render.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: [SKIP][183] ([Intel XE#2234]) -> [SKIP][184] ([Intel XE#6703])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: [SKIP][185] ([Intel XE#6503]) -> [SKIP][186] ([Intel XE#6703])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-9/igt@kms_sharpness_filter@filter-dpms.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_sharpness_filter@filter-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][187] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][188] ([Intel XE#2426] / [Intel XE#5848])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][189] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][190] ([Intel XE#2509] / [Intel XE#7437])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][191] ([Intel XE#1499]) -> [SKIP][192] ([Intel XE#6703])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_eudebug@basic-connect:
- shard-bmg: [SKIP][193] ([Intel XE#7636]) -> [SKIP][194] ([Intel XE#6703]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-1/igt@xe_eudebug@basic-connect.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_eudebug@basic-connect.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: [SKIP][195] ([Intel XE#7140]) -> [SKIP][196] ([Intel XE#6703])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-1/igt@xe_evict@evict-small-multi-queue-priority-cm.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-bmg: [SKIP][197] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][198] ([Intel XE#6703]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch:
- shard-bmg: [SKIP][199] ([Intel XE#7136]) -> [SKIP][200] ([Intel XE#6703]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-priority:
- shard-bmg: [SKIP][201] ([Intel XE#6874]) -> [SKIP][202] ([Intel XE#6703]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-preempt-mode-priority.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-priority.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic:
- shard-bmg: [SKIP][203] ([Intel XE#7138]) -> [SKIP][204] ([Intel XE#6703])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-basic.html
* igt@xe_peer2peer@write:
- shard-bmg: [SKIP][205] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][206] ([Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-5/igt@xe_peer2peer@write.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_peer2peer@write.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: [SKIP][207] ([Intel XE#944]) -> [SKIP][208] ([Intel XE#6703])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-10/igt@xe_query@multigpu-query-uc-fw-version-huc.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [FAIL][209] ([Intel XE#5937]) -> [SKIP][210] ([Intel XE#6703])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8884/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/shard-bmg-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[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#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5812
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[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#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[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#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[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#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[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#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[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#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[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#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7638
[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#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7859]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7859
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[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_8884 -> IGTPW_15098
* Linux: xe-4983-5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e -> xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c
IGTPW_15098: b040700d1fb5deb15c08a1bc0f98caaf1370feac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8884: 2e185bca126c4d135fe7fe579d0a3a177f150813 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4983-5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e: 5521e3e7a175fef7d7a35a4b8fd17ca473be8e7e
xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c: 94d56a898a2db27f841b17f6966a81ba502fe63c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15098/index.html
[-- Attachment #2: Type: text/html, Size: 73741 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-05-05 12:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-05 4:01 [PATCH i-g-t v2 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
2026-05-05 4:01 ` [PATCH i-g-t v2 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
2026-05-05 5:41 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup (rev2) Patchwork
2026-05-05 5:54 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-05 9:39 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-05 12:21 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox