* [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup
@ 2026-04-29 9:39 Pranay Samala
2026-04-29 9:39 ` [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Pranay Samala @ 2026-04-29 9:39 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 | 207 +++++++++++++++++++++---------------------------
1 file changed, 90 insertions(+), 117 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
@ 2026-04-29 9:39 ` Pranay Samala
2026-05-04 9:37 ` Karthik B S
2026-04-29 9:39 ` [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Pranay Samala @ 2026-04-29 9:39 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. Add igt_remove_fb() to test_fini() so the
framebuffer is always freed during cleanup, even when a test exits
early.
Signed-off-by: Pranay Samala <pranay.samala@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] 11+ messages in thread
* [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-04-29 9:39 ` [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
@ 2026-04-29 9:39 ` Pranay Samala
2026-05-04 9:39 ` Karthik B S
2026-04-29 9:39 ` [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
` (4 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Pranay Samala @ 2026-04-29 9:39 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.
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_hdr.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index c4680298a..e880b280e 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 */
@@ -564,7 +564,7 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
}
cleanup:
- test_fini(data);
+ return;
}
/* Fills some test values for HDR metadata targeting SDR. */
@@ -686,7 +686,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 +699,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 +812,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] 11+ messages in thread
* [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-04-29 9:39 ` [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-04-29 9:39 ` [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
@ 2026-04-29 9:39 ` Pranay Samala
2026-05-04 9:40 ` Karthik B S
2026-04-29 14:02 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Pranay Samala @ 2026-04-29 9:39 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Earlier, output capability checks were done in the outer loops
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)
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
Signed-off-by: Pranay Samala <pranay.samala@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 e880b280e..c9a0b1707 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);
}
@@ -718,43 +710,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;
@@ -764,42 +721,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] 11+ messages in thread
* ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (2 preceding siblings ...)
2026-04-29 9:39 ` [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
@ 2026-04-29 14:02 ` Patchwork
2026-04-29 14:06 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 14:02 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3696 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from IGT_8879 -> IGTPW_15081
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_15081 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/bat-dg2-8/igt@i915_selftest@live.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_8879/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6] +78 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][7] ([i915#13735]) -> [PASS][8] +80 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][11] ([i915#13735] / [i915#15673]) -> [PASS][12] +49 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8879 -> IGTPW_15081
* Linux: CI_DRM_18377 -> CI_DRM_18379
CI-20190529: 20190529
CI_DRM_18377: a53aafc879e9c52b2776089762591d2766a27f0a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18379: 9ee30ac229d686465b572e6404250178b28b616b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15081: 9b8f5393424708201408884c8c1f59e427ebaecf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/index.html
[-- Attachment #2: Type: text/html, Size: 4753 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Fix incorrect skips and improve cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (3 preceding siblings ...)
2026-04-29 14:02 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup Patchwork
@ 2026-04-29 14:06 ` Patchwork
2026-04-29 23:31 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-29 23:51 ` ✗ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 14:06 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1155 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup
URL : https://patchwork.freedesktop.org/series/165692/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8879_BAT -> XEIGTPW_15081_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8879 -> IGTPW_15081
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-4949-1db870ffb55b6414a78d7609ba7e08adf880dfc5
IGTPW_15081: 9b8f5393424708201408884c8c1f59e427ebaecf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-4949-1db870ffb55b6414a78d7609ba7e08adf880dfc5: 1db870ffb55b6414a78d7609ba7e08adf880dfc5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/index.html
[-- Attachment #2: Type: text/html, Size: 1714 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for Fix incorrect skips and improve cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (4 preceding siblings ...)
2026-04-29 14:06 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-29 23:31 ` Patchwork
2026-04-29 23:51 ` ✗ Xe.CI.FULL: " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 23:31 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 132838 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18379_full -> IGTPW_15081_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15081_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15081_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_15081/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_15081_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][1] -> [FAIL][2] +4 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-tglu-7/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-glk: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][4] +11 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010} (NEW):
- shard-dg1: NOTRUN -> [SKIP][5] +18 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010.html
* {igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010} (NEW):
- shard-tglu: NOTRUN -> [SKIP][6] +13 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/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][7] +11 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/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][8] +19 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@perf_pmu@most-busy-check-all@bcs0:
- shard-mtlp: [PASS][9] -> [FAIL][10] +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@bcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@perf_pmu@most-busy-check-all@bcs0.html
#### Warnings ####
* igt@kms_hdr@bpc-switch-dpms:
- shard-snb: [SKIP][11] -> [FAIL][12] +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-snb4/igt@kms_hdr@bpc-switch-dpms.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb4/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_18379/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][15] ([i915#12713]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][17] ([i915#12713]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-tglu-5/igt@kms_hdr@brightness-with-hdr.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010}:
- shard-tglu-1: NOTRUN -> [SKIP][19] +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-snb: NOTRUN -> [FAIL][20] +3 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb7/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][21] +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][22] +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-10/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
New tests
---------
New tests have been introduced between CI_DRM_18379_full and IGTPW_15081_full:
### New IGT tests (38) ###
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 3 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@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 : 3 skip(s)
- Exec time: [0.0, 14.31] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-1-xrgb2101010:
- Statuses : 3 skip(s)
- Exec time: [0.0, 14.47] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- Statuses : 2 skip(s)
- Exec time: [0.0, 14.59] s
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-2-xrgb2101010:
- Statuses : 2 skip(s)
- Exec time: [0.0, 14.23] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-hdr@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-4-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb16161616f:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-vga-1-xrgb2101010:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-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_15081_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#11078])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@device_reset@cold-reset-bound.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#7697]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-16/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#7697])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3936])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3936])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3936])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][32] ([i915#13356]) +1 other test incomplete
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#9323])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#9323])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-15/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#9323])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-3/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#9323])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#6335])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg1: NOTRUN -> [SKIP][38] +26 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-16/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][40] ([i915#1099]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#280])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#280])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][45] ([i915#8898]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#15314])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4525]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@gem_exec_balancer@parallel-out-fence.html
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4525])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-15/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-active.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#14544] / [i915#3281])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@gem_mmap_wc@write-wc-read-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#14544] / [i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#14544]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@gem_userptr_blits@unsync-overlap.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#14544] / [i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@gem_userptr_blits@unsync-overlap.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-3/igt@gem_userptr_blits@unsync-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][90] ([i915#13356] / [i915#14586])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk1/igt@gem_workarounds@suspend-resume.html
- shard-rkl: [PASS][91] -> [INCOMPLETE][92] ([i915#13356])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-3/igt@gem_workarounds@suspend-resume.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_workarounds@suspend-resume.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][93] +8 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-5/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#14073]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#14073]) +6 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#14073]) +15 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#15479]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][104] ([i915#15342]) +1 other test abort
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][105] ([i915#15342]) +1 other test abort
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6412])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#14498])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#13356])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk8/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#13356] / [i915#15172])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: NOTRUN -> [ABORT][113] ([i915#15131])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg1: [PASS][114] -> [DMESG-WARN][115] ([i915#4391] / [i915#4423])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg1-19/igt@i915_suspend@basic-s3-without-i915.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][116] ([i915#4817]) +1 other test incomplete
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk1/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: NOTRUN -> [INCOMPLETE][117] ([i915#4817])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][118] -> [INCOMPLETE][119] ([i915#4817])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#7707])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#7707])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#4212]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- shard-glk: [PASS][125] -> [FAIL][126] ([i915#14888]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#12761])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][128] ([i915#12761] / [i915#14995])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#9531])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][130] ([i915#1769])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#5286])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#5286]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#5286]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][138] -> [FAIL][139] ([i915#15733] / [i915#5138])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3638]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][142] +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#3638])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#5190])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6187])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][148] +33 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][149] +110 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#14098] / [i915#6095]) +50 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +79 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +79 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6095]) +69 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +34 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#12313])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#12313])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544] / [i915#6095]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#12805])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][162] -> [INCOMPLETE][163] ([i915#15582])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][164] ([i915#15582])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#6095]) +16 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#12313])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/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][167] ([i915#12313]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/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-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#6095]) +194 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6095]) +19 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-edp-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3742])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#13783]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-single.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#14544] / [i915#7828])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#15330])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#15330] / [i915#3116] / [i915#3299])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3299])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#15865])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#15865]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#15865])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#15865]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-16/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#15865]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#15865]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#15865]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#13049]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#13049]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3555]) +5 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8814])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#13049]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#13049])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#13049]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#13049] / [i915#14544])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][202] +14 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#4103]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9809])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#9067])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#9723])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3804])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#13707])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#13707])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13707])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#13707])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#13707])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#3840] / [i915#9053])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#14544] / [i915#9934])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][226] ([i915#12745] / [i915#4839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/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][227] ([i915#12745])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9934]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#9934]) +6 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9934]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg1: [PASS][231] -> [FAIL][232] ([i915#13027])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg1-12/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][233] ([i915#13027])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][234] ([i915#12745] / [i915#4839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk11/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][235] ([i915#12745])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk11/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15643] / [i915#5190])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#15643]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#15643])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15104]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15104]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15104])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#1825]) +14 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#10056])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk5/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15102]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#15102]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15102] / [i915#3458]) +9 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +6 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-glk10: NOTRUN -> [SKIP][248] +223 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#5354]) +16 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#1825]) +27 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3458]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15102]) +10 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#5439])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15102]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8708]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#1825]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#8708]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#15102]) +15 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#15102] / [i915#3023]) +16 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f} (NEW):
- shard-snb: NOTRUN -> [SKIP][264] +143 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#14544] / [i915#15459])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#15458])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15458])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15458])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#15458])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15458])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#15638] / [i915#15722])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#6301]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#6301])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#12756] / [i915#13409] / [i915#13476])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#13409] / [i915#13476])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#14712]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15608]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15709]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#15709]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#15709]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15709])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#15709])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][283] ([i915#12178])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][284] ([i915#7862]) +1 other test fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8821])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3555]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#3555]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8821])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#13958])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#13958])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15329]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15329]) +4 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#15329]) +9 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15329] / [i915#6953]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15329]) +7 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9812])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#15948])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#15948])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15948])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15948])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][301] ([i915#15752])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#9340])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#8430])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15073])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][305] -> [SKIP][306] ([i915#15073]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#15073])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#15073])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15073])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +5 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][311] ([i915#11520]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#11520]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][313] ([i915#11520]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#11520]) +4 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11520]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][316] ([i915#11520]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#11520]) +3 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12316]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520] / [i915#14544])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +8 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-5/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][322] +280 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9732]) +16 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-8/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +12 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +10 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@kms_psr@psr-sprite-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +15 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#9732]) +12 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk10: NOTRUN -> [INCOMPLETE][329] ([i915#15500])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#14544] / [i915#5289])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/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][331] ([i915#12755] / [i915#15867] / [i915#5190])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#5289])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#12755] / [i915#15867])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12755] / [i915#15867])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][335] ([i915#13179]) +1 other test abort
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#8623])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#8623])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#8623])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#8623])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#8623])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][341] ([i915#12276]) +1 other test incomplete
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#15243] / [i915#3555])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#11920])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#9906])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_vrr@max-min.html
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9906]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][346] -> [FAIL][347] ([i915#15420]) +1 other test fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@kms_vrr@negative-basic.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#7387])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][349] -> [FAIL][350] ([i915#15453])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: [PASS][351] -> [FAIL][352] ([i915#4349]) +1 other test fail
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-2/igt@perf_pmu@busy-accuracy-98@rcs0.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#3708]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][354] +47 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-6/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#3708])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#3708]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-7/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#3708])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-15/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9917])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#9917]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#9917])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][361] ([i915#12910]) +9 other tests fail
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-2/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][362] ([i915#12910]) +9 other tests fail
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-7/igt@sriov_basic@bind-unbind-vf@vf-5.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][363] ([i915#13356]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][365] ([i915#13363]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@gem_eio@kms.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@gem_eio@kms.html
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][367] ([i915#15871]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-4/igt@gem_exec_big@single.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-1/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][369] ([i915#13356]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][371] ([i915#4817]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@i915_suspend@sysfs-reader.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][373] ([i915#13566]) -> [PASS][374] +7 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][375] ([i915#13566]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [FAIL][377] ([i915#15389] / [i915#6880]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [ABORT][379] ([i915#15132]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][381] ([i915#15073]) -> [PASS][382] +2 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][383] ([i915#15073]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][385] ([i915#15073]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][387] ([i915#14544] / [i915#9323]) -> [SKIP][388] ([i915#9323])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][389] ([i915#13008]) -> [SKIP][390] ([i915#13008] / [i915#14544])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: [SKIP][391] ([i915#14544] / [i915#280]) -> [SKIP][392] ([i915#280])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][393] ([i915#4525]) -> [SKIP][394] ([i915#14544] / [i915#4525])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][395] ([i915#15944]) -> [FAIL][396] ([i915#15816])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-tglu-10/igt@gem_exec_big@single.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: [SKIP][397] ([i915#3281]) -> [SKIP][398] ([i915#14544] / [i915#3281])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@gem_exec_reloc@basic-wc-cpu.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-rkl: [SKIP][399] ([i915#14544] / [i915#3281]) -> [SKIP][400] ([i915#3281]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#4613]) -> [SKIP][402] ([i915#4613])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][403] ([i915#13717] / [i915#14544]) -> [SKIP][404] ([i915#13717])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#8411]) -> [SKIP][406] ([i915#8411])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][407] ([i915#3282]) -> [SKIP][408] ([i915#14544] / [i915#3282]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][409] ([i915#14544] / [i915#3282]) -> [SKIP][410] ([i915#3282])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][411] ([i915#3297]) -> [SKIP][412] ([i915#14544] / [i915#3297])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@gem_userptr_blits@coherency-sync.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: [SKIP][413] ([i915#14544] / [i915#2527]) -> [SKIP][414] ([i915#2527])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][415] ([i915#2527]) -> [SKIP][416] ([i915#14544] / [i915#2527]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@gen9_exec_parse@shadow-peek.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: [SKIP][417] ([i915#6590]) -> [SKIP][418] ([i915#14544] / [i915#6590]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-1/igt@i915_pm_freq_mult@media-freq@gt0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][419] -> [SKIP][420] ([i915#14544]) +9 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][421] ([i915#5286]) -> [SKIP][422] ([i915#14544] / [i915#5286]) +2 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][423] ([i915#14544] / [i915#5286]) -> [SKIP][424] ([i915#5286]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#3638]) -> [SKIP][426] ([i915#3638])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][427] ([i915#3638]) -> [SKIP][428] ([i915#14544] / [i915#3638])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][429] ([i915#12313] / [i915#14544]) -> [SKIP][430] ([i915#12313])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][431] ([i915#6095]) -> [SKIP][432] ([i915#14544] / [i915#6095]) +3 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][433] ([i915#14098] / [i915#6095]) -> [SKIP][434] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][435] ([i915#14544] / [i915#6095]) -> [SKIP][436] ([i915#6095]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][437] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][438] ([i915#14098] / [i915#6095]) +2 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][439] ([i915#12313]) -> [SKIP][440] ([i915#12313] / [i915#14544])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#3742]) -> [SKIP][442] ([i915#3742])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: [SKIP][443] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][444] ([i915#11151] / [i915#7828]) +2 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][445] ([i915#11151] / [i915#7828]) -> [SKIP][446] ([i915#11151] / [i915#14544] / [i915#7828])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-1/igt@kms_chamelium_edid@dp-mode-timings.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#15865]) -> [SKIP][448] ([i915#15865])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_content_protection@atomic.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][449] ([i915#13049] / [i915#14544]) -> [SKIP][450] ([i915#13049])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][451] ([i915#3555]) -> [SKIP][452] ([i915#14544] / [i915#3555])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-rkl: [SKIP][453] ([i915#14544]) -> [SKIP][454] +2 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: [SKIP][455] ([i915#1257] / [i915#14544]) -> [SKIP][456] ([i915#1257])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_dp_aux_dev@basic.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_dp_aux_dev@basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#3840]) -> [SKIP][458] ([i915#3840])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-rkl: [SKIP][459] ([i915#9934]) -> [SKIP][460] ([i915#14544] / [i915#9934])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][461] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][462] ([i915#12745] / [i915#4839])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][463] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][464] ([i915#12745])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#9934]) -> [SKIP][466] ([i915#9934]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-rkl: [SKIP][467] ([i915#15643]) -> [SKIP][468] ([i915#14544] / [i915#15643])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#15643]) -> [SKIP][470] ([i915#15643]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][471] ([i915#1825]) -> [SKIP][472] ([i915#14544] / [i915#1825]) +11 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#1825]) -> [SKIP][474] ([i915#1825]) +11 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#15102]) -> [SKIP][476] ([i915#15102]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][477] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][478] ([i915#15102] / [i915#3458]) +4 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][480] ([i915#15102] / [i915#3023]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][481] ([i915#15102] / [i915#3458]) -> [SKIP][482] ([i915#10433] / [i915#15102] / [i915#3458])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][483] ([i915#15102] / [i915#3023]) -> [SKIP][484] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][485] ([i915#12713]) -> [SKIP][486] ([i915#14543])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: [SKIP][487] ([i915#12713] / [i915#3555] / [i915#8228]) -> [SKIP][488] ([i915#3555] / [i915#8228]) +4 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][489] ([i915#15709]) -> [SKIP][490] ([i915#14544] / [i915#15709])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#15709]) -> [SKIP][492] ([i915#15709])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_lowres@tiling-4:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#3555]) -> [SKIP][494] ([i915#3555])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-7/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][495] ([i915#13958]) -> [SKIP][496] ([i915#13958] / [i915#14544])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#5354]) -> [SKIP][498] ([i915#5354])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][499] ([i915#11520] / [i915#14544]) -> [SKIP][500] ([i915#11520]) +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#9683]) -> [SKIP][502] ([i915#9683]) +1 other test skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][503] ([i915#1072] / [i915#9732]) -> [SKIP][504] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][505] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][506] ([i915#1072] / [i915#9732]) +5 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#2435]) -> [SKIP][508] ([i915#2435])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [ABORT][509] ([i915#15778]) -> [INCOMPLETE][510] ([i915#13520])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18379/shard-mtlp-4/igt@perf_pmu@module-unload.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15081/shard-mtlp-2/igt@perf_pmu@module-unload.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[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#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[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#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[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#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14543
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[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#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[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#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[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#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[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#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#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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[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#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[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#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[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#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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8879 -> IGTPW_15081
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18379: 9ee30ac229d686465b572e6404250178b28b616b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15081: 9b8f5393424708201408884c8c1f59e427ebaecf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ 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_15081/index.html
[-- Attachment #2: Type: text/html, Size: 176119 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for Fix incorrect skips and improve cleanup
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
` (5 preceding siblings ...)
2026-04-29 23:31 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-04-29 23:51 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-04-29 23:51 UTC (permalink / raw)
To: Samala, Pranay; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 53001 bytes --]
== Series Details ==
Series: Fix incorrect skips and improve cleanup
URL : https://patchwork.freedesktop.org/series/165692/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8879_FULL -> XEIGTPW_15081_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15081_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15081_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_15081_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@device_reset@unbind-reset-rebind:
- shard-lnl: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-8/igt@device_reset@unbind-reset-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-3/igt@device_reset@unbind-reset-rebind.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_fbcon_fbt@psr-suspend.html
* {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010} (NEW):
- shard-bmg: NOTRUN -> [SKIP][5] +12 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][6] +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb2101010.html
* igt@xe_evict@evict-cm-threads-large:
- shard-bmg: [PASS][7] -> [ABORT][8] +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-4/igt@xe_evict@evict-cm-threads-large.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-lnl: NOTRUN -> [ABORT][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
New tests
---------
New tests have been introduced between XEIGT_8879_FULL and XEIGTPW_15081_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_15081_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2370])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7059] / [Intel XE#7085])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1428] / [Intel XE#7387])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7679]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7676])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2652]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2724] / [Intel XE#7449])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#306] / [Intel XE#7358])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-4/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#307] / [Intel XE#6974])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2390] / [Intel XE#6974])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7642]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321] / [Intel XE#7355])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309] / [Intel XE#7343]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][38] -> [FAIL][39] ([Intel XE#7571])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#323] / [Intel XE#6035])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4354] / [Intel XE#5882])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2244])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4156] / [Intel XE#7425])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#703] / [Intel XE#7448])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1421]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7179])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7179])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +16 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2313]) +13 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +15 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#6900] / [Intel XE#7362])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7086] / [Intel XE#7390])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2486])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7283]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7283]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2393])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7376] / [Intel XE#870])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1489]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893] / [Intel XE#7304])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4608]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2387] / [Intel XE#7429])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#7345])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#4609])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@kms_psr@pr-primary-blt.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#6361]) +2 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6503]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2450] / [Intel XE#5857])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1499])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#2142]) +1 other test fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7636]) +11 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_eudebug_online@single-step.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7636]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-6/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#7482]) +9 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7136]) +10 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7136]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6874]) +18 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6874]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#7138]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-rebind-err:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#7138]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-rebind-err.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2833])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#6964]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6964]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#7793]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_page_reclaim@random:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#7793])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-2/igt@xe_page_reclaim@random.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1420] / [Intel XE#7590])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2284] / [Intel XE#7370])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#944]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4130] / [Intel XE#7366])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-1/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [PASS][107] -> [FAIL][108] ([Intel XE#5937]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][109] -> [FAIL][110] ([Intel XE#6569])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-lnl-7/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [FAIL][112] ([Intel XE#7659]) -> [PASS][113] +2 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [FAIL][114] -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [DMESG-WARN][116] ([Intel XE#5354]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][118] ([Intel XE#3321]) -> [PASS][119] +1 other test pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc:
- shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][122] ([Intel XE#6569]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-bmg: [FAIL][124] ([Intel XE#5937]) -> [PASS][125] +1 other test pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_sriov_vram@vf-access-beyond.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@xe_sriov_vram@vf-access-beyond.html
#### Warnings ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][126] ([Intel XE#7571]) -> [FAIL][127] ([Intel XE#7809])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][128] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][129] ([Intel XE#3544])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#7283])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#2234] / [Intel XE#2850])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_psr@fbc-pr-sprite-plane-move.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][134] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][135] ([Intel XE#2509] / [Intel XE#7437])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#2322] / [Intel XE#7372])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#7138])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([ABORT][140], [PASS][141], [PASS][142], [PASS][143], [SKIP][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163]) ([Intel XE#2457] / [Intel XE#7405]) -> ([DMESG-FAIL][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [SKIP][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) ([Intel XE#2457] / [Intel XE#5545] / [Intel XE#6652] / [Intel XE#7405])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-5/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-3/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-10/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-10/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-3/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-4/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-4/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-10/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-7/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-9/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-3/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-6/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-4/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-8/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-2/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/shard-bmg-1/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[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#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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[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#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[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#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[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#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[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#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#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#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[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#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7659
[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#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[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_8879 -> IGTPW_15081
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-4949-1db870ffb55b6414a78d7609ba7e08adf880dfc5
IGTPW_15081: 9b8f5393424708201408884c8c1f59e427ebaecf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-4949-1db870ffb55b6414a78d7609ba7e08adf880dfc5: 1db870ffb55b6414a78d7609ba7e08adf880dfc5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15081/index.html
[-- Attachment #2: Type: text/html, Size: 59701 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup
2026-04-29 9:39 ` [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
@ 2026-05-04 9:37 ` Karthik B S
0 siblings, 0 replies; 11+ messages in thread
From: Karthik B S @ 2026-05-04 9:37 UTC (permalink / raw)
To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar
Hi Pranay,
On 4/29/2026 3:09 PM, Pranay Samala wrote:
> Move igt_fb_t afb from local variable in test functions into the
> shared data_t struct. Add igt_remove_fb() to test_fini() so the
> framebuffer is always freed during cleanup, even when a test exits
> early.
This commit message can be improved. Currently the two sentences seem
disjoint, may be ",and add igt_remove_fb()"?
With this updated, patch LGTM.
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
>
> Signed-off-by: Pranay Samala <pranay.samala@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)
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup
2026-04-29 9:39 ` [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
@ 2026-05-04 9:39 ` Karthik B S
0 siblings, 0 replies; 11+ messages in thread
From: Karthik B S @ 2026-05-04 9:39 UTC (permalink / raw)
To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar
Hi Pranay,
On 4/29/2026 3:09 PM, Pranay Samala wrote:
> 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.
>
> Signed-off-by: Pranay Samala <pranay.samala@intel.com>
> ---
> tests/kms_hdr.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
> index c4680298a..e880b280e 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 */
> @@ -564,7 +564,7 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
> }
>
> cleanup:
> - test_fini(data);
> + return;
The 'cleanup' label is not required anymore. Just return from where
cleanup is being called.
With this fixed, patch LGTM.
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> }
>
> /* Fills some test values for HDR metadata targeting SDR. */
> @@ -686,7 +686,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 +699,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 +812,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 */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests
2026-04-29 9:39 ` [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
@ 2026-05-04 9:40 ` Karthik B S
0 siblings, 0 replies; 11+ messages in thread
From: Karthik B S @ 2026-05-04 9:40 UTC (permalink / raw)
To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar
Hi Pranay,
On 4/29/2026 3:09 PM, Pranay Samala wrote:
> Earlier, output capability checks were done in the outer loops
Comments on earlier rev has not been addressed here. Please check.
With this updated,
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> 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)
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
> Signed-off-by: Pranay Samala <pranay.samala@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 e880b280e..c9a0b1707 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);
> }
> @@ -718,43 +710,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;
> @@ -764,42 +721,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,
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-05-04 9:41 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29 9:39 [PATCH i-g-t 0/3] Fix incorrect skips and improve cleanup Pranay Samala
2026-04-29 9:39 ` [PATCH i-g-t 1/3] tests/kms_hdr: Move framebuffer into data_t for centralized cleanup Pranay Samala
2026-05-04 9:37 ` Karthik B S
2026-04-29 9:39 ` [PATCH i-g-t 2/3] tests/kms_hdr: Move test_fini() for proper cleanup Pranay Samala
2026-05-04 9:39 ` Karthik B S
2026-04-29 9:39 ` [PATCH i-g-t 3/3] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala
2026-05-04 9:40 ` Karthik B S
2026-04-29 14:02 ` ✓ i915.CI.BAT: success for Fix incorrect skips and improve cleanup Patchwork
2026-04-29 14:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-29 23:31 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-29 23:51 ` ✗ 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