* [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage
@ 2026-04-15 18:11 Swati Sharma
2026-04-15 21:08 ` ✓ Xe.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Swati Sharma @ 2026-04-15 18:11 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma, Chaitanya Kumar Borah
Extend kms_hdr to exercise FP16 framebuffers in addition to
10bpc formats. All HDR metadata, toggle, swap and bpc-switch tests
now run with both XRGB2101010 and XRGB16161616F. This ensures
HDR handling paths are validated with half-float surfaces as
well as packed 10bpc.
v2: -rebase
-move pipe break outside format loop to test all formats
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
---
tests/kms_hdr.c | 154 ++++++++++++++++++++++++++----------------------
1 file changed, 84 insertions(+), 70 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index f30902b72..b215b0e6c 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -88,6 +88,12 @@ enum hdmi_eotf {
HDMI_EOTF_SMPTE_ST2084,
};
+/* HDR test formats: 10bpc + FP16 */
+static const uint32_t hdr_test_formats[] = {
+ DRM_FORMAT_XRGB2101010,
+ DRM_FORMAT_XRGB16161616F,
+};
+
/* Test flags. */
enum {
TEST_NONE = 1 << 0,
@@ -233,6 +239,7 @@ static void prepare_test(data_t *data, igt_output_t *output, igt_crtc_t *crtc)
static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
igt_output_t *output,
+ uint32_t format,
uint32_t flags)
{
igt_display_t *display = &data->display;
@@ -242,7 +249,7 @@ static void test_bpc_switch_on_output(data_t *data, igt_crtc_t *crtc,
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- DRM_FORMAT_XRGB2101010, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &afb);
igt_assert(afb_id);
draw_hdr_pattern(&afb);
@@ -337,28 +344,31 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
continue;
}
- prepare_test(data, output,
- crtc);
+ 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));
+ 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;
+ test_fini(data);
+ break;
+ }
+
+ 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]))
+ test_bpc_switch_on_output(data,
+ crtc,
+ output, hdr_test_formats[i], flags);
}
- data->mode = igt_output_get_mode(output);
- data->w = data->mode->hdisplay;
- data->h = data->mode->vdisplay;
-
- igt_dynamic_f("pipe-%s-%s",
- igt_crtc_name(crtc), output->name)
- test_bpc_switch_on_output(data,
- crtc,
- output, flags);
-
/* One pipe is enough */
break;
}
@@ -475,7 +485,7 @@ static void adjust_brightness(data_t *data, uint32_t flags)
static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
igt_output_t *output,
- uint32_t flags)
+ uint32_t format, uint32_t flags)
{
igt_display_t *display = &data->display;
struct hdr_output_metadata hdr;
@@ -485,7 +495,7 @@ static void test_static_toggle(data_t *data, igt_crtc_t *crtc,
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- DRM_FORMAT_XRGB2101010, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &afb);
igt_assert(afb_id);
draw_hdr_pattern(&afb);
@@ -590,7 +600,8 @@ static void fill_hdr_output_metadata_sdr(struct hdr_output_metadata *meta)
}
static void test_static_swap(data_t *data, igt_crtc_t *crtc,
- igt_output_t *output, uint32_t flags)
+ igt_output_t *output,
+ uint32_t format, uint32_t flags)
{
igt_display_t *display = &data->display;
igt_crc_t ref_crc, new_crc;
@@ -600,7 +611,7 @@ static void test_static_swap(data_t *data, igt_crtc_t *crtc,
/* 10-bit formats are slow, so limit the size. */
afb_id = igt_create_fb(data->fd, 512, 512,
- DRM_FORMAT_XRGB2101010, DRM_FORMAT_MOD_LINEAR, &afb);
+ format, DRM_FORMAT_MOD_LINEAR, &afb);
igt_assert(afb_id);
draw_hdr_pattern(&afb);
@@ -756,55 +767,58 @@ static void test_hdr(data_t *data, uint32_t flags)
continue;
}
- 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;
- }
+ for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) {
+ 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));
+ 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",
- igt_crtc_name(crtc), output->name) {
- if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
- TEST_INVALID_HDR | TEST_BRIGHTNESS))
- test_static_toggle(data,
- crtc,
- output, flags);
- if (flags & TEST_SWAP)
- test_static_swap(data,
- crtc,
- output, flags);
- if (flags & TEST_INVALID_METADATA_SIZES)
- test_invalid_metadata_sizes(data, 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])) {
+ if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
+ TEST_INVALID_HDR | TEST_BRIGHTNESS))
+ test_static_toggle(data,
+ crtc,
+ output, hdr_test_formats[i], flags);
+ if (flags & TEST_SWAP)
+ test_static_swap(data,
+ crtc,
+ output, hdr_test_formats[i], flags);
+ if (flags & TEST_INVALID_METADATA_SIZES)
+ test_invalid_metadata_sizes(data, output);
+ }
}
/* One pipe is enough */
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2)
2026-04-15 18:11 [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage Swati Sharma
@ 2026-04-15 21:08 ` Patchwork
2026-04-15 21:29 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-15 21:08 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4585 bytes --]
== Series Details ==
Series: tests/kms_hdr: add FP16 format coverage (rev2)
URL : https://patchwork.freedesktop.org/series/154418/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8861_BAT -> XEIGTPW_14987_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_14987_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@nullptr:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@fbdev@nullptr.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2229])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#1420] / [Intel XE#7590])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#2245] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2236] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
Build changes
-------------
* IGT: IGT_8861 -> IGTPW_14987
IGTPW_14987: 291b32ac94e5c5d73079190ea5957c682c5d4e40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/index.html
[-- Attachment #2: Type: text/html, Size: 5472 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2)
2026-04-15 18:11 [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage Swati Sharma
2026-04-15 21:08 ` ✓ Xe.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2) Patchwork
@ 2026-04-15 21:29 ` Patchwork
2026-04-15 22:34 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-16 4:12 ` ✓ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-15 21:29 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7110 bytes --]
== Series Details ==
Series: tests/kms_hdr: add FP16 format coverage (rev2)
URL : https://patchwork.freedesktop.org/series/154418/
State : success
== Summary ==
CI Bug Log - changes from IGT_8861 -> IGTPW_14987
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14987 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#15673])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-adlp-9/igt@core_debugfs@read-all-entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adlp-9/igt@core_debugfs@read-all-entries.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#15656])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-arls-5/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-9: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#7707]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#4103]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#3840])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][16]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#5354])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][19] ([i915#3555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][20] ([i915#3291]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- bat-adlp-9: [DMESG-WARN][21] ([i915#15673]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-adlp-9/igt@core_auth@basic-auth.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-adlp-9/igt@core_auth@basic-auth.html
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][23] ([i915#12061]) -> [PASS][24] +1 other test pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-dg2-8/igt@i915_selftest@live.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [DMESG-FAIL][25] ([i915#12061]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-arls-6/igt@i915_selftest@live@workarounds.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8861 -> IGTPW_14987
CI-20190529: 20190529
CI_DRM_18335: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14987: 291b32ac94e5c5d73079190ea5957c682c5d4e40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/index.html
[-- Attachment #2: Type: text/html, Size: 8651 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_hdr: add FP16 format coverage (rev2)
2026-04-15 18:11 [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage Swati Sharma
2026-04-15 21:08 ` ✓ Xe.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2) Patchwork
2026-04-15 21:29 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-15 22:34 ` Patchwork
2026-04-16 4:12 ` ✓ i915.CI.Full: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-15 22:34 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48739 bytes --]
== Series Details ==
Series: tests/kms_hdr: add FP16 format coverage (rev2)
URL : https://patchwork.freedesktop.org/series/154418/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8861_FULL -> XEIGTPW_14987_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8861_FULL and XEIGTPW_14987_FULL:
### New IGT tests (26) ###
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.87] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.17] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [4.54] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [4.54] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.01] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [2.00] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [2.29] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [4.95] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [5.12] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [1.87] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [2.11] s
* igt@kms_hdr@bpc-switch@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [3.49] s
* igt@kms_hdr@bpc-switch@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [3.46] s
* igt@kms_hdr@invalid-hdr@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [2.86] s
* igt@kms_hdr@invalid-hdr@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [2.87] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_hdr@static-swap@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_hdr@static-swap@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [1.15] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.38] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.89] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-dp-2-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.17] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [1.25] s
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.51] s
Known issues
------------
Here are the changes found in XEIGTPW_14987_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_3d@basic:
- shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#6011])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_3d@basic.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#610] / [Intel XE#7387])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +5 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#607] / [Intel XE#7361])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7621])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#7675] / [Intel XE#7679])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7676])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +11 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#306] / [Intel XE#7358])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325] / [Intel XE#7358])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2390] / [Intel XE#6974])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7642]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7642])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#7571])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1508])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1340] / [Intel XE#7435])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4331] / [Intel XE#7227])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#4422] / [Intel XE#7442])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4422] / [Intel XE#7442])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2372] / [Intel XE#7359])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2373] / [Intel XE#7448])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1138] / [Intel XE#7344])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2375])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7349])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1397] / [Intel XE#7385]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7351])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7179])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2311]) +26 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4141]) +16 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2352] / [Intel XE#7399])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#656]) +19 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7061] / [Intel XE#7356])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +29 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7283]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7130]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7283]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4596] / [Intel XE#5854])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2499])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2893] / [Intel XE#7304])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- 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_14987/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@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_14987/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-5/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#7345])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4609])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-5/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2414])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#3904] / [Intel XE#7342])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6503]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2426] / [Intel XE#5848]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1499]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2168] / [Intel XE#7444])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1499])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-7/igt@kms_vrr@negative-basic.html
* igt@xe_ccs@vm-bind-fault-mode-decompress:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7644])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@xe_ccs@vm-bind-fault-mode-decompress.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7636]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#7636]) +14 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][86] -> [INCOMPLETE][87] ([Intel XE#6321])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6540] / [Intel XE#688]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_balancer@twice-parallel-basic:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7482]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-8/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1392]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#7136]) +9 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#7136]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6874]) +24 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#6874]) +12 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7138]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7138]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][98] -> [ABORT][99] ([Intel XE#7578])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2229])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6964])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6964]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#5694] / [Intel XE#7370])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-10/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#584] / [Intel XE#7369])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4650] / [Intel XE#7347])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-3/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7599])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-7/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#944]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-6/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#944]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_flr@flr-basic@numvfs-1:
- shard-bmg: [PASS][113] -> [FAIL][114] ([Intel XE#5937]) +3 other tests fail
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@xe_sriov_flr@flr-basic@numvfs-1.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-5/igt@xe_sriov_flr@flr-basic@numvfs-1.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#4273])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vfio@bind-unbind-vfs:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7724])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-4/igt@xe_sriov_vfio@bind-unbind-vfs.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [INCOMPLETE][117] ([Intel XE#6819]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][119] ([Intel XE#7084]) -> [PASS][120] +1 other test pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][121] ([Intel XE#301]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][123] ([Intel XE#6361]) -> [PASS][124] +2 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][125] ([Intel XE#4459]) -> [PASS][126] +1 other test pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][127] ([Intel XE#2142]) -> [PASS][128] +1 other test pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][129] ([Intel XE#6569]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-bmg: [ABORT][131] -> [SKIP][132] ([Intel XE#4141])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][133] ([Intel XE#3544]) -> [SKIP][134] ([Intel XE#3374] / [Intel XE#3544])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#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#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[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#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[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#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[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#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[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#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[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#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[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#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8861 -> IGTPW_14987
IGTPW_14987: 291b32ac94e5c5d73079190ea5957c682c5d4e40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14987/index.html
[-- Attachment #2: Type: text/html, Size: 55576 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_hdr: add FP16 format coverage (rev2)
2026-04-15 18:11 [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage Swati Sharma
` (2 preceding siblings ...)
2026-04-15 22:34 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-16 4:12 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-04-16 4:12 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 144726 bytes --]
== Series Details ==
Series: tests/kms_hdr: add FP16 format coverage (rev2)
URL : https://patchwork.freedesktop.org/series/154418/
State : success
== Summary ==
CI Bug Log - changes from IGT_8861_full -> IGTPW_14987_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between IGT_8861_full and IGTPW_14987_full:
### New IGT tests (8) ###
* igt@kms_hdr@bpc-switch-dpms@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [4.50] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [4.40] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [4.60] s
* igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [4.54] s
* igt@kms_hdr@bpc-switch@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_hdr@bpc-switch@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [3.39] s
* igt@kms_hdr@invalid-hdr@pipe-a-edp-1-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [2.86] s
* igt@kms_hdr@invalid-hdr@pipe-a-edp-1-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [2.84] s
Known issues
------------
Here are the changes found in IGTPW_14987_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3936])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@gem_caching@reads.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#12392] / [i915#13356])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [ABORT][22] ([i915#15131]) +1 other test abort
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][23] ([i915#13356]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-snb4/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- shard-glk11: NOTRUN -> [SKIP][26] +90 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#280]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][28] ([i915#8898]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#15314])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-9/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][34] ([i915#11965]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6344])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +10 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@gem_exec_schedule@reorder-wide.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-13/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4860]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk3/igt@gem_lmem_swapping@random-engines.html
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#12193])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +8 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +7 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@close:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@gem_mmap_wc@close.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][66] ([i915#2658])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#13717])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#13398])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#13398])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@gem_readwrite@beyond-eob.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#14544] / [i915#3282])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#14544] / [i915#8411])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][77] -> [INCOMPLETE][78] ([i915#13809])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-glk6/igt@gem_softpin@noreloc-s3.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk9/igt@gem_softpin@noreloc-s3.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4879])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@gen9_exec_parse@shadow-peek.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#14123])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#14118]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#14118])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#14118]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#15479]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][99] ([i915#15481])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-13/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-tglu-1: NOTRUN -> [ABORT][100] ([i915#15342]) +1 other test abort
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#8399])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][102] -> [FAIL][103] ([i915#12964]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#13356] / [i915#15172])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@i915_pm_rps@thresholds.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6188])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#6188])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][110] ([i915#4817])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk5/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][111] -> [INCOMPLETE][112] ([i915#4817])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@i915_suspend@forcewake.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@i915_suspend@forcewake.html
- shard-glk10: NOTRUN -> [INCOMPLETE][113] ([i915#4817])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk10/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][114] -> [INCOMPLETE][115] ([i915#4817])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-glk1/igt@i915_suspend@sysfs-reader.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk9/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#7707])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d@basic:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#15726])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#5190])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][121] -> [INCOMPLETE][122] ([i915#12761]) +1 other test incomplete
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][124] ([i915#1769])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#5286])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5286]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14544] / [i915#5286]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: [PASS][131] -> [FAIL][132] ([i915#15733] / [i915#5138])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/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:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][134] +18 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-snb: NOTRUN -> [SKIP][137] +168 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-snb5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3828]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3828]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3828]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3828]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3828]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][144] +16 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/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-hflip:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544] / [i915#6095]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#6095]) +38 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#10307] / [i915#6095]) +86 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#12313])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6095]) +59 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6095]) +84 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +34 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#14098] / [i915#6095]) +43 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#15582])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +225 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#12313])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#6095]) +66 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +10 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][163] +11 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +4 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15865]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#15865]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_content_protection@content-type-change.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15865]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#15330] / [i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#15330])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#15330])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#15865]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_content_protection@legacy.html
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#15865])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#15865]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-dg1: [PASS][179] -> [DMESG-WARN][180] ([i915#4423]) +2 other tests dmesg-warn
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu-1: NOTRUN -> [FAIL][181] ([i915#13566]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#13049])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3555]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][192] ([i915#12358] / [i915#14152] / [i915#7882])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][193] ([i915#12358] / [i915#14152])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9809]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][198] ([i915#15804])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9723])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#9723])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev@basic:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#1257])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_dp_aux_dev@basic.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#1257])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_dp_aux_dev@basic.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#1257])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-13/igt@kms_dp_aux_dev@basic.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#1257])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#13749]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#13748]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#13748]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#13748]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#13748]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#13707])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8812])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8812])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8812])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][221] ([i915#9878])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#1839])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#1839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#658])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#658])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-6/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#658])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +8 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#9934])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3637] / [i915#9934]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839] / [i915#6113])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#9934])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12745] / [i915#4839])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/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][235] ([i915#12745]) +1 other test incomplete
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3637] / [i915#9934]) +9 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#9934]) +8 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9934]) +7 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3637] / [i915#9934]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg1: [PASS][240] -> [FAIL][241] ([i915#13027])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-18/igt@kms_flip@flip-vs-expired-vblank.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
- shard-dg1: NOTRUN -> [FAIL][242] ([i915#13027])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#12314] / [i915#12745] / [i915#4839]) +1 other test incomplete
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12314] / [i915#12745]) +1 other test incomplete
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15643]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#15643])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#15643]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15643]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#15643]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15643] / [i915#5190]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][252] -> [SKIP][253] ([i915#15672])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-2/igt@kms_force_connector_basic@prune-stale-modes.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][254] +33 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#4423])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8708]) +11 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#15102]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544] / [i915#15102])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15102])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#15102]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#1825]) +29 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544] / [i915#1825]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3023]) +14 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#15104]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15104]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#15104]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15102]) +9 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15102] / [i915#3458]) +6 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3458]) +10 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#5354]) +26 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#1825]) +31 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][274] +71 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15102]) +28 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8708]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#12713])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15460])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15638] / [i915#15722])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15815])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#15815])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14544] / [i915#15815])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#15815])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#15815])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][288] +22 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: NOTRUN -> [INCOMPLETE][289] ([i915#12756] / [i915#13476])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][291] ([i915#13476])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#15709]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][293] +135 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#15709]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15709]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#15709]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#15709]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#15709]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk11: NOTRUN -> [FAIL][299] ([i915#12178])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][300] ([i915#7862]) +1 other test fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#10647] / [i915#12169])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][302] ([i915#10647]) +1 other test fail
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#11614] / [i915#3582]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#13958])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#13958])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#14259])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#14259])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#6953] / [i915#9423])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#6953])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#6953])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#6953])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#15329]) +14 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#15329]) +7 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#15329]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15329] / [i915#3555] / [i915#6953])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15329] / [i915#6953])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#15329]) +22 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9812])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#12343])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#14544] / [i915#5354])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#5354])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#3361])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#3828]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#8430])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#15073]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#15073]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#15073])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#15073])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][332] -> [SKIP][333] ([i915#15073]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#15073])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][335] -> [SKIP][336] ([i915#15073])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#15073])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#15403])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#15403])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#6524])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-4/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#11520]) +6 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11520]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/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-dg1: NOTRUN -> [SKIP][343] ([i915#11520]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#9808]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#11520]) +6 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][346] ([i915#11520]) +6 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#11520] / [i915#14544])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][348] ([i915#11520]) +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +5 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][350] ([i915#11520]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-snb4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12316]) +8 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][352] ([i915#11520]) +4 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9683])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#9732]) +7 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +23 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9688]) +17 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][357] +325 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +22 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +15 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-18/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#4077] / [i915#9688]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-7/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr-sprite-blt:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9732]) +23 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#9685])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#9685])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][364] ([i915#15500])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#12755] / [i915#15867]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#5289])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#5289])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12755] / [i915#15867])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#5030] / [i915#9041])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#5030]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#5030] / [i915#9041])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#12276]) +1 other test incomplete
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#9906])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#8808] / [i915#9906]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#9906])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-2/igt@kms_vrr@negative-basic.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#2436])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#2436])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#7387])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#7387])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#2434])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][384] ([i915#2434])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-15/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#2434])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-1/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: NOTRUN -> [FAIL][386] ([i915#4349]) +3 other tests fail
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#8516])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-8/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#3291] / [i915#3708])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#3708] / [i915#4077])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#3708])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][393] ([i915#12910]) +9 other tests fail
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#14544] / [i915#9917])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][395] ([i915#12910])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][396] ([i915#13356]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-mtlp: [FAIL][398] ([i915#15762]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-4/igt@gem_exec_suspend@basic-s4-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_whisper@basic-queues-forked:
- shard-mtlp: [INCOMPLETE][400] -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-8/igt@gem_exec_whisper@basic-queues-forked.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-2/igt@gem_exec_whisper@basic-queues-forked.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg2: [FAIL][402] -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-8/igt@gem_lmem_swapping@verify-ccs.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][404] ([i915#14545]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-1/igt@i915_module_load@resize-bar.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-6/igt@i915_module_load@resize-bar.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][406] ([i915#7984]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-6/igt@i915_power@sanity.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@i915_power@sanity.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][408] ([i915#12061] / [i915#15560]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-3/igt@i915_selftest@live.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][410] ([i915#12061]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][412] ([i915#4817]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-4/igt@i915_suspend@sysfs-reader.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][414] -> [PASS][415] +2 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][416] ([i915#14694] / [i915#15582]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][418] ([i915#13566]) -> [PASS][419] +3 other tests pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-5/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][420] ([i915#13566]) -> [PASS][421] +2 other tests pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][422] ([i915#15725]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425] +5 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][426] ([i915#15073]) -> [PASS][427] +1 other test pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][428] ([i915#15073]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][430] ([i915#14419]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
- shard-rkl: [ABORT][432] ([i915#15132]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
#### Warnings ####
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][434] ([i915#13008] / [i915#14544]) -> [SKIP][435] ([i915#13008])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#6334]) -> [SKIP][437] ([i915#6334]) +1 other test skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][438] ([i915#6344]) -> [SKIP][439] ([i915#14544] / [i915#6344])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-rkl: [SKIP][440] ([i915#3281]) -> [SKIP][441] ([i915#14544] / [i915#3281]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@gem_exec_reloc@basic-wc-cpu-active.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#3281]) -> [SKIP][443] ([i915#3281]) +3 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-active.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][444] ([i915#4613]) -> [SKIP][445] ([i915#14544] / [i915#4613])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#4613]) -> [SKIP][447] ([i915#4613])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: [SKIP][448] ([i915#3282]) -> [SKIP][449] ([i915#14544] / [i915#3282])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@gem_partial_pwrite_pread@reads-uncached.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#3282]) -> [SKIP][451] ([i915#3282]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3297]) -> [SKIP][453] ([i915#3297])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@gen9_exec_parse@bb-start-cmd.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][456] ([i915#15927]) -> [ABORT][457] ([i915#15481] / [i915#15927]) +1 other test abort
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-13/igt@i915_module_load@fault-injection.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-13/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#6412]) -> [SKIP][459] ([i915#6412])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@i915_module_load@resize-bar.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][460] ([i915#8399]) -> [SKIP][461] ([i915#14544] / [i915#8399])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][462] ([i915#14498] / [i915#14544]) -> [SKIP][463] ([i915#14498])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][465] ([i915#1769] / [i915#3555])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#5286]) -> [SKIP][467] ([i915#5286]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: [SKIP][468] ([i915#5286]) -> [SKIP][469] ([i915#14544] / [i915#5286])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][470] ([i915#3638]) -> [SKIP][471] ([i915#14544] / [i915#3638]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#3638]) -> [SKIP][473] ([i915#3638])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][474] ([i915#14544]) -> [SKIP][475] +5 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][476] -> [SKIP][477] ([i915#14544]) +3 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][478] ([i915#6095]) -> [SKIP][479] ([i915#14544] / [i915#6095]) +5 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#6095]) -> [SKIP][481] ([i915#6095]) +3 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][482] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][483] ([i915#14098] / [i915#6095]) +7 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][484] ([i915#12805] / [i915#14544]) -> [SKIP][485] ([i915#12805])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: [INCOMPLETE][486] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][487] ([i915#15582])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][488] ([i915#14098] / [i915#6095]) -> [SKIP][489] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][490] ([i915#11151] / [i915#7828]) -> [SKIP][491] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-2/igt@kms_chamelium_edid@dp-mode-timings.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][492] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#7828]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#15330]) -> [SKIP][495] ([i915#15330])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][496] ([i915#15865]) -> [SKIP][497] ([i915#14544] / [i915#15865]) +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@kms_content_protection@suspend-resume.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: [SKIP][498] ([i915#3555]) -> [SKIP][499] ([i915#14544] / [i915#3555])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: [SKIP][500] ([i915#9067]) -> [SKIP][501] ([i915#4423] / [i915#9067])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][502] ([i915#13707]) -> [SKIP][503] ([i915#13707] / [i915#14544])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: [SKIP][504] ([i915#3840]) -> [SKIP][505] ([i915#14544] / [i915#3840])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg1: [SKIP][506] ([i915#3840] / [i915#4423] / [i915#9053]) -> [SKIP][507] ([i915#3840] / [i915#9053])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-rkl: [SKIP][508] ([i915#9934]) -> [SKIP][509] ([i915#14544] / [i915#9934]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15643]) -> [SKIP][511] ([i915#15643]) +2 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15102]) -> [SKIP][513] ([i915#15102])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][514] ([i915#1825]) -> [SKIP][515] ([i915#14544] / [i915#1825]) +6 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][516] ([i915#15102]) -> [SKIP][517] ([i915#14544] / [i915#15102])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][518] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][519] ([i915#15102] / [i915#3458]) +4 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][520] ([i915#15102] / [i915#3458]) -> [SKIP][521] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#1825]) -> [SKIP][523] ([i915#1825]) +11 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][525] ([i915#15102] / [i915#3023]) +8 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][526] ([i915#15102] / [i915#3023]) -> [SKIP][527] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][528] ([i915#1187] / [i915#12713]) -> [SKIP][529] ([i915#12713])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-5/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][530] ([i915#13331] / [i915#14544]) -> [SKIP][531] ([i915#12713])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][532] ([i915#15458]) -> [SKIP][533] ([i915#14544] / [i915#15458])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#15709]) -> [SKIP][535] ([i915#15709])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][536] ([i915#15709]) -> [SKIP][537] ([i915#14544] / [i915#15709])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][538] ([i915#15329]) -> [SKIP][539] ([i915#14544] / [i915#15329]) +3 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#15329]) -> [SKIP][541] ([i915#15329]) +3 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: [SKIP][542] ([i915#15740]) -> [SKIP][543] ([i915#9292])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-mtlp-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][544] ([i915#15752]) -> [SKIP][545] ([i915#15128])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][546] ([i915#11520] / [i915#14544]) -> [SKIP][547] ([i915#11520]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][548] ([i915#11520]) -> [SKIP][549] ([i915#11520] / [i915#14544]) +4 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][550] ([i915#14544] / [i915#9683]) -> [SKIP][551] ([i915#9683]) +1 other test skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][555] ([i915#1072] / [i915#9732]) +5 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-4/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg1: [SKIP][556] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][557] ([i915#1072] / [i915#9732])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-dg1-17/igt@kms_psr@psr2-cursor-plane-move.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-dg1-12/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#3555]) -> [SKIP][559] ([i915#3555]) +2 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][560] ([i915#11920] / [i915#14544]) -> [SKIP][561] ([i915#11920])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@kms_vrr@lobf.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][562] ([i915#9906]) -> [SKIP][563] ([i915#14544] / [i915#9906])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][564] ([i915#2433]) -> [SKIP][565] ([i915#14544] / [i915#2433])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][566] ([i915#14544] / [i915#9917]) -> [SKIP][567] ([i915#9917])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[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#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[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#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#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15740]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15740
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15927]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15927
[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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[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#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8861 -> IGTPW_14987
CI-20190529: 20190529
CI_DRM_18335: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14987: 291b32ac94e5c5d73079190ea5957c682c5d4e40 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14987/index.html
[-- Attachment #2: Type: text/html, Size: 192181 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-04-16 4:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-15 18:11 [PATCH i-g-t,v2] tests/kms_hdr: add FP16 format coverage Swati Sharma
2026-04-15 21:08 ` ✓ Xe.CI.BAT: success for tests/kms_hdr: add FP16 format coverage (rev2) Patchwork
2026-04-15 21:29 ` ✓ i915.CI.BAT: " Patchwork
2026-04-15 22:34 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-16 4:12 ` ✓ i915.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