* [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa
@ 2024-10-22 2:29 Santhosh Reddy Guddati
2024-10-22 2:29 ` [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-22 2:29 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Santhosh Reddy Guddati
Add a subtest to validate switching from ultra joiner to big joiner
and vice-versa.
Santhosh Reddy Guddati (1):
tests/intel/kms_joiner: switch modeset between uj and bj
tests/intel/kms_joiner.c | 94 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
@ 2024-10-22 2:29 ` Santhosh Reddy Guddati
2024-11-07 5:28 ` Karthik B S
2024-10-22 4:08 ` ✓ Fi.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2024-10-22 2:29 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Santhosh Reddy Guddati
Add a subtest to validate switching from ultra joiner to big joiner
and vice-versa.
v2: Add new subtests for switching without force joiner (Karthik)
v3: start with uj to bj switch, if not available switch to force mode
v4: check for uj, bj support before starting dynamic tests (karthik)
call reset_connectors after forcing to uj
v5: Add a separate function to switch modes and execute test for each
connected supported output (karthik)
Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
---
tests/intel/kms_joiner.c | 94 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 9a353ee1b..88d1567d7 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -71,6 +71,9 @@
* SUBTEST: invalid-modeset-force-ultra-joiner
* Description: Verify if the modeset on the other pipes are rejected when
* the pipe A is active with force ultra joiner modeset.
+ *
+ * SUBTEST: switch-modeset-ultra-joiner-big-joiner
+ * Description: Verify switching between ultra joiner and big joiner modeset.
*/
IGT_TEST_DESCRIPTION("Test joiner / force joiner");
@@ -161,6 +164,82 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
return master_pipe;
}
+static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode)
+{
+ igt_plane_t *primary;
+ igt_fb_t fb;
+
+ igt_output_set_pipe(output, PIPE_A);
+ igt_output_override_mode(output, mode);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb);
+ igt_plane_set_fb(primary, &fb);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_display_reset(&data->display);
+ igt_reset_connectors();
+ igt_plane_set_fb(primary, NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+}
+
+static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output)
+{
+ drmModeModeInfo bj_mode;
+ drmModeModeInfo uj_mode;
+ int status;
+ bool ultrajoiner_found;
+ enum pipe pipe;
+
+ drmModeConnector *connector = output->config.connector;
+
+ igt_display_reset(&data->display);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode);
+
+ if (ultrajoiner_found) {
+ uj_mode = *igt_output_get_mode(output);
+ } else if (data->non_ultra_joiner_output_count > 0) {
+ status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector,
+ JOINED_PIPES_ULTRA_JOINER);
+ igt_assert_f(status, "Failed to toggle force joiner\n");
+ uj_mode = *igt_output_get_mode(output);
+ } else {
+ igt_skip("No ultra joiner mode found on output %s\n", output->name);
+ }
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ set_joiner_mode(data, output, &uj_mode);
+ /* Switch to big joiner mode */
+ if (bigjoiner_mode_found(data->drm_fd, output->config.connector,
+ max_dotclock, &bj_mode)) {
+ bj_mode = *igt_output_get_mode(output);
+ igt_output_override_mode(output, &bj_mode);
+ } else {
+ status = kmstest_force_connector_joiner(data->drm_fd,
+ output->config.connector,
+ JOINED_PIPES_BIG_JOINER);
+ igt_assert_f(status, "Failed to toggle force joiner\n");
+ bj_mode = *igt_output_get_mode(output);
+ }
+
+ set_joiner_mode(data, output, &bj_mode);
+
+ /* Switch back to ultra joiner*/
+ if (ultrajoiner_found) {
+ igt_output_override_mode(output, &uj_mode);
+ } else {
+ status = kmstest_force_connector_joiner(data->drm_fd,
+ output->config.connector,
+ JOINED_PIPES_ULTRA_JOINER);
+ igt_assert_f(status, "Failed to toggle force joiner\n");
+ }
+
+ set_joiner_mode(data, output, &uj_mode);
+ }
+}
+
static void test_single_joiner(data_t *data, int output_count, bool force_joiner)
{
int i;
@@ -592,6 +671,21 @@ igt_main
}
}
+ igt_describe("Verify modeset switch between ultra joiner and big joiner");
+ igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") {
+ igt_require_f(ultra_joiner_supported,
+ "Ultra joiner not supported on this platform\n");
+ igt_require_f(data.ultra_joiner_output_count > 0 ||
+ data.non_ultra_joiner_output_count > 0,
+ "No ultra joiner or force ultra joiner output found\n");
+ igt_require_f(data.n_pipes > 3,
+ "Minimum 4 pipes required\n");
+
+ for_each_connected_output(&data.display, output) {
+ switch_modeset_ultra_joiner_big_joiner(&data, output);
+ }
+ }
+
igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") {
igt_require_f(ultra_joiner_supported,
"Ultra joiner not supported on this platform\n");
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
2024-10-22 2:29 ` [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
@ 2024-10-22 4:08 ` Patchwork
2024-10-22 4:11 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-22 4:08 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12950 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
URL : https://patchwork.freedesktop.org/series/138525/
State : success
== Summary ==
CI Bug Log - changes from IGT_8080 -> IGTPW_11948
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/index.html
Participating hosts (43 -> 44)
------------------------------
Additional (3): bat-apl-1 bat-dg2-9 fi-kbl-8809g
Missing (2): fi-snb-2520m bat-dg1-6
Known issues
------------
Here are the changes found in IGTPW_11948 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#2582]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
- bat-apl-1: NOTRUN -> [SKIP][4] +23 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-apl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#11681] / [i915#6621])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_mocs:
- bat-arlh-2: NOTRUN -> [DMESG-FAIL][10] ([i915#9500])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-arlh-2/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4212] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4212] / [i915#4215] / [i915#5190])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4212]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][14] +30 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#5354]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][16]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#5274])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#9197]) +16 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#1072] / [i915#9732]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#9197])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [ABORT][24] ([i915#12133]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [ABORT][26] ([i915#12061]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [ABORT][28] ([i915#12061]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-arlh-2/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arlh-2: [ABORT][30] ([i915#12133]) -> [DMESG-FAIL][31] ([i915#10341] / [i915#9500])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-arlh-2/igt@i915_selftest@live.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: [SKIP][32] ([i915#5190] / [i915#9792]) -> [SKIP][33] ([i915#4212] / [i915#5190] / [i915#9792])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-11: [SKIP][34] ([i915#5190]) -> [SKIP][35] ([i915#4212] / [i915#5190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-14: [SKIP][36] ([i915#5190]) -> [SKIP][37] ([i915#4212] / [i915#5190])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-mtlp-8: [SKIP][38] ([i915#5190]) -> [SKIP][39] ([i915#4212] / [i915#5190])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: [SKIP][40] ([i915#5190]) -> [SKIP][41] ([i915#4212] / [i915#5190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: [SKIP][42] ([i915#4215] / [i915#5190]) -> [SKIP][43] ([i915#4212] / [i915#4215] / [i915#5190])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg1-7: [SKIP][44] ([i915#4215]) -> [SKIP][45] ([i915#4212] / [i915#4215])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: [SKIP][46] ([i915#4215] / [i915#5190]) -> [SKIP][47] ([i915#4212] / [i915#4215] / [i915#5190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-14: [SKIP][48] ([i915#4215] / [i915#5190]) -> [SKIP][49] ([i915#4212] / [i915#4215] / [i915#5190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8080 -> IGTPW_11948
* Linux: CI_DRM_15559 -> CI_DRM_15574
CI-20190529: 20190529
CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15574: aa0898115bcff3eda6d021cc66eb8a1c3b264c56 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11948: c989af852b4fd44ed6e7641579293daf5ecbe954 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/index.html
[-- Attachment #2: Type: text/html, Size: 17590 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
2024-10-22 2:29 ` [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
2024-10-22 4:08 ` ✓ Fi.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5) Patchwork
@ 2024-10-22 4:11 ` Patchwork
2024-10-22 5:22 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-22 10:16 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-22 4:11 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5422 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
URL : https://patchwork.freedesktop.org/series/138525/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11948_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11948_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [INCOMPLETE][5] ([Intel XE#2874]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@xe_pat@pat-index-xe2:
- bat-atsm-2: [SKIP][7] ([Intel XE#977]) -> [SKIP][8] ([Intel XE#2839] / [Intel XE#977])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-atsm-2/igt@xe_pat@pat-index-xe2.html
- bat-adlp-vf: [SKIP][9] ([Intel XE#977]) -> [SKIP][10] ([Intel XE#2839] / [Intel XE#977])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
- bat-adlp-7: [SKIP][11] ([Intel XE#977]) -> [SKIP][12] ([Intel XE#2839] / [Intel XE#977])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
- bat-dg2-oem2: [SKIP][13] ([Intel XE#977]) -> [SKIP][14] ([Intel XE#2839] / [Intel XE#977])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: [SKIP][15] ([Intel XE#2245]) -> [SKIP][16] ([Intel XE#2237] / [Intel XE#2245])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
- bat-bmg-1: [SKIP][17] ([Intel XE#2245]) -> [SKIP][18] ([Intel XE#2237] / [Intel XE#2245])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-bmg-1/igt@xe_pat@pat-index-xelp.html
- bat-lnl-2: [SKIP][19] ([Intel XE#977]) -> [SKIP][20] ([Intel XE#2237] / [Intel XE#977])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/bat-lnl-2/igt@xe_pat@pat-index-xelp.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8080 -> IGTPW_11948
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56
IGTPW_11948: c989af852b4fd44ed6e7641579293daf5ecbe954 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56: aa0898115bcff3eda6d021cc66eb8a1c3b264c56
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/index.html
[-- Attachment #2: Type: text/html, Size: 7303 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
` (2 preceding siblings ...)
2024-10-22 4:11 ` ✓ CI.xeBAT: " Patchwork
@ 2024-10-22 5:22 ` Patchwork
2024-10-22 10:16 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-22 5:22 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100293 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
URL : https://patchwork.freedesktop.org/series/138525/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15574_full -> IGTPW_11948_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11948_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11948_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/index.html
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11948_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@gem_lmem_swapping@verify-random-ccs.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][3] +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
* {igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner} (NEW):
- shard-dg2: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@sysfs_timeslice_duration@timeout:
- shard-mtlp: [PASS][9] -> [ABORT][10] +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout.html
New tests
---------
New tests have been introduced between CI_DRM_15574_full and IGTPW_11948_full:
### New IGT tests (1) ###
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_11948_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8411])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8411])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +17 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@fbdev@read:
- shard-dg2: [PASS][18] -> [SKIP][19] ([i915#2582])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@fbdev@read.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@fbdev@read.html
* igt@fbdev@write:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#2582])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@fbdev@write.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#12027] / [i915#12031])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#5784])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][34] ([i915#5784])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2846])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@gem_exec_fair@basic-none.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-solo:
- shard-tglu: NOTRUN -> [FAIL][41] ([i915#2842]) +7 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-7/igt@gem_exec_fair@basic-none-solo.html
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][43] ([i915#2842]) +6 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][44] -> [FAIL][45] ([i915#2842]) +2 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#5107])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#5107])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3281]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +9 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4812]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@gem_exec_schedule@preempt-queue.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#7276])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-2/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#12193])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-17/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4885]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4885])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-2/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@gen9_exec_parse@secure-batches.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][97] -> [ABORT][98] ([i915#11703]) +1 other test abort
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681] / [i915#6621]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#11681])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#11681])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_selftest@live:
- shard-mtlp: NOTRUN -> [ABORT][106] ([i915#12216])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][107] -> [ABORT][108] ([i915#12216])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@perf:
- shard-snb: [PASS][109] -> [ABORT][110] ([i915#12450])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@i915_selftest@perf.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb7/igt@i915_selftest@perf.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-17/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-dg1: [PASS][114] -> [FAIL][115] ([i915#12451])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8709]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#9531])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: [PASS][124] -> [SKIP][125] ([i915#9197]) +18 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][127] +6 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3638]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190] / [i915#9197]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +165 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#6095]) +44 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +189 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#12313]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#12313]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12313]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +88 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +10 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#7828]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#3116] / [i915#3299])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9433])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8063] / [i915#9433])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116] / [i915#9424]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#6944] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [FAIL][157] ([i915#1339] / [i915#7173]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_content_protection@uevent.html
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8814])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8814]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11453] / [i915#3359])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11453] / [i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#11453] / [i915#3359])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#11453] / [i915#3359])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4213])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#4103]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9809])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [PASS][171] -> [FAIL][172] ([i915#2346])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#8588])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#8588])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#8588])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#8588])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8588])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#2065] / [i915#4854])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@kms_feature_discovery@chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4854])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#4854])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#4854])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-1x:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9738])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_feature_discovery@display-1x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#1839])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#658])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#658])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#658])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][193] +11 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#9934]) +4 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-mtlp: [PASS][196] -> [FAIL][197] ([i915#79]) +1 other test fail
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-dg1: NOTRUN -> [DMESG-FAIL][198] ([i915#4423])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-14/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [PASS][199] -> [FAIL][200] ([i915#2122]) +8 other tests fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg1: [PASS][201] -> [FAIL][202] ([i915#2122])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
- shard-mtlp: [PASS][203] -> [FAIL][204] ([i915#2122]) +2 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][205] ([i915#12457]) +1 other test fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: [PASS][206] -> [FAIL][207] ([i915#2122]) +2 other tests fail
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][210] -> [SKIP][211] ([i915#3555]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8813])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8810])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555] / [i915#5190]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672]) +7 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][216] -> [SKIP][217] ([i915#5354]) +7 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8708]) +16 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
- shard-snb: [PASS][219] -> [SKIP][220]
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][221] +36 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#1825]) +15 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8708]) +11 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +57 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#8708]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][226] +59 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9766])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#3458]) +13 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#1825]) +21 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3023]) +12 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3458]) +10 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#10656])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#12339])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#12339])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-14/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#12339])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][240] +12 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#8825]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_plane@plane-position-covered.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-dg2: [PASS][243] -> [SKIP][244] ([i915#7294])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#12247]) +9 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2: [PASS][246] -> [SKIP][247] ([i915#12247] / [i915#8152] / [i915#9423])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-dg2: [PASS][248] -> [SKIP][249] ([i915#12247]) +2 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [PASS][250] -> [SKIP][251] ([i915#12247] / [i915#8152])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#9423])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#12247]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#12247]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247]) +7 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247]) +8 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#3555] / [i915#9423])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#12247] / [i915#3555])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#3555] / [i915#6953])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#5354])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#5354])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#9812]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9292])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#9685]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#9685]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][266] ([i915#9295])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#3361])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][268] -> [SKIP][269] ([i915#9340])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#8430])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#8430])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#8430])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#8430])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor:
- shard-dg2: [PASS][274] -> [SKIP][275] ([i915#1849])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-7/igt@kms_pm_rpm@cursor.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#9519])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][277] -> [SKIP][278] ([i915#9519]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#9519])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#9519])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9519])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#6524])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-14/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#11520]) +8 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#11520]) +6 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12316])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][287] ([i915#11520])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#11520]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-14/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#9683])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#9683])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-19/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-snb: NOTRUN -> [SKIP][291] +47 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb4/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +21 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#9688]) +12 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +19 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +12 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-blt:
- shard-mtlp: [PASS][296] -> [FAIL][297] ([i915#12432]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-6/igt@kms_psr@psr2-cursor-blt.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-2/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#9732]) +15 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-10/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#11131] / [i915#4235] / [i915#5190])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#11131] / [i915#4235])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#3555]) +2 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][303] ([i915#12231]) +1 other test abort
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3555]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#8623])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-dg1: [PASS][306] -> [DMESG-WARN][307] ([i915#4423])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-19/igt@kms_vblank@ts-continuation-dpms-rpm.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#9197]) +17 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#3555]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_vrr@flip-dpms.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#3555]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#9906])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#9906])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#8808] / [i915#9906])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#2437])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#2437])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-2/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#2437])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#2437])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_writeback@writeback-invalid-parameters.html
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#2437])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [PASS][321] -> [FAIL][322] ([i915#4349]) +1 other test fail
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html
- shard-mtlp: [PASS][323] -> [FAIL][324] ([i915#4349]) +2 other tests fail
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][325] ([i915#4349]) +5 other tests fail
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][326] ([i915#11823])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#8516])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3708] / [i915#4077]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-5/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#3291] / [i915#3708])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#3291] / [i915#3708])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#3708] / [i915#4077]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#3708]) +2 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#3708] / [i915#4077]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#3708]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#3708]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-15/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#9917])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][338] ([i915#7297]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][340] ([i915#12392] / [i915#7297]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][342] ([i915#12412]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@gem_exec_balancer@nop.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-7/igt@gem_exec_balancer@nop.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][344] ([i915#11713]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-8/igt@gem_exec_big@single.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-deadline:
- shard-tglu: [FAIL][346] ([i915#2846]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-6/igt@gem_exec_fair@basic-deadline.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][348] ([i915#2842]) -> [PASS][349] +1 other test pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][350] ([i915#2842]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][352] ([i915#7975] / [i915#8213]) -> [PASS][353] +1 other test pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
- shard-dg1: [ABORT][354] ([i915#7975] / [i915#8213]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [ABORT][356] ([i915#7975] / [i915#8213]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [ABORT][358] ([i915#9820]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-rkl: [ABORT][360] ([i915#9820]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [ABORT][362] ([i915#10887] / [i915#9820]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][364] ([i915#10131] / [i915#10887] / [i915#9697]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_suspend@fence-restore-untiled:
- shard-snb: [DMESG-WARN][366] -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb2/igt@i915_suspend@fence-restore-untiled.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb5/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-snb: [SKIP][368] -> [PASS][369] +3 other tests pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-dg2: [SKIP][370] ([i915#5354]) -> [PASS][371] +2 other tests pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip@basic-flip-vs-dpms.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [FAIL][372] ([i915#11961] / [i915#2122]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a1:
- shard-tglu: [FAIL][374] ([i915#2122]) -> [PASS][375] +3 other tests pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2: [SKIP][376] ([i915#3555]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-dg2: [SKIP][378] ([i915#7294]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2: [SKIP][380] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- shard-dg2: [SKIP][382] ([i915#12247]) -> [PASS][383] +2 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: [SKIP][384] ([i915#12247] / [i915#8152]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][386] ([i915#9519]) -> [PASS][387] +2 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [SKIP][388] ([i915#9519]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2: [SKIP][390] ([i915#9197]) -> [PASS][391] +15 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][392] ([i915#10393]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-7/igt@kms_vrr@negative-basic.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-3/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][394] ([i915#4349]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][396] ([i915#9820]) -> [DMESG-WARN][397] ([i915#4391] / [i915#4423])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][398] -> [SKIP][399] ([i915#9197]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: [SKIP][400] ([i915#9197]) -> [SKIP][401] +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: [SKIP][402] ([i915#5190]) -> [SKIP][403] ([i915#5190] / [i915#9197])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][404] ([i915#5190] / [i915#9197]) -> [SKIP][405] ([i915#4538] / [i915#5190]) +3 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg1: [SKIP][406] ([i915#4538]) -> [SKIP][407] ([i915#4423] / [i915#4538])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-14/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][408] ([i915#4538] / [i915#5190]) -> [SKIP][409] ([i915#5190] / [i915#9197]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][410] ([i915#9197]) -> [SKIP][411] ([i915#10307] / [i915#6095]) +2 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2: [SKIP][412] ([i915#10307] / [i915#6095]) -> [SKIP][413] ([i915#9197]) +8 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][414] ([i915#9197]) -> [SKIP][415] ([i915#4087])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cdclk@plane-scaling.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_cdclk@plane-scaling.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][416] ([i915#9197]) -> [SKIP][417] ([i915#7118] / [i915#9424])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@atomic.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][418] ([i915#3299]) -> [SKIP][419] ([i915#9197])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][420] ([i915#9197]) -> [SKIP][421] ([i915#9424])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: [SKIP][422] ([i915#11453] / [i915#3359]) -> [SKIP][423] ([i915#9197])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][424] ([i915#9197]) -> [SKIP][425] ([i915#3555]) +2 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2: [SKIP][426] ([i915#5354]) -> [SKIP][427] ([i915#9197]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][428] ([i915#9197]) -> [SKIP][429] ([i915#5354])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][430] ([i915#9197]) -> [SKIP][431] ([i915#9067])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: [SKIP][432] ([i915#9197]) -> [SKIP][433] ([i915#9833])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][434] ([i915#9197]) -> [SKIP][435] ([i915#3840])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][436] ([i915#3555] / [i915#3840]) -> [SKIP][437] ([i915#9197])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-1/igt@kms_dsc@dsc-with-formats.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][438] ([i915#3555]) -> [SKIP][439] ([i915#2672] / [i915#3555])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: [SKIP][440] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][441] ([i915#3555] / [i915#5190]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: [SKIP][442] ([i915#3555] / [i915#5190]) -> [SKIP][443] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][444] ([i915#5354]) -> [SKIP][445] ([i915#8708]) +4 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][446] ([i915#10433] / [i915#3458]) -> [SKIP][447] ([i915#3458])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][448] ([i915#3458]) -> [SKIP][449] ([i915#10433] / [i915#3458])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: [SKIP][450] ([i915#5354]) -> [SKIP][451] ([i915#3458]) +4 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2: [SKIP][452] ([i915#10433] / [i915#3458]) -> [SKIP][453] ([i915#5354])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][454] ([i915#5354]) -> [SKIP][455] ([i915#10055])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg1: [SKIP][456] ([i915#3458]) -> [SKIP][457] ([i915#3458] / [i915#4423])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][458] ([i915#3458]) -> [SKIP][459] ([i915#5354]) +10 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15574/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: [SKIP][460] ([i915#8708])
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11948/index.html
[-- Attachment #2: Type: text/html, Size: 108257 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
` (3 preceding siblings ...)
2024-10-22 5:22 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-22 10:16 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-22 10:16 UTC (permalink / raw)
To: Santhosh Reddy Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 98196 bytes --]
== Series Details ==
Series: tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5)
URL : https://patchwork.freedesktop.org/series/138525/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11948_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11948_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11948_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11948_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@modeset-vs-vblank-race:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@modeset-vs-vblank-race.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_flip@modeset-vs-vblank-race.html
* {igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner} (NEW):
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@xe_oa@oa-unit-exclusive-stream-exec-q:
- shard-lnl: [PASS][6] -> [DMESG-WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-4/igt@xe_oa@oa-unit-exclusive-stream-exec-q.html
New tests
---------
New tests have been introduced between XEIGT_8080_full and XEIGTPW_11948_full:
### New IGT tests (1) ###
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_11948_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [PASS][8] -> [SKIP][9] ([Intel XE#1885])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html
- shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#1885])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@core_hotunplug@hotreplug-lateclose.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#827]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#873])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#1426]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2231])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +55 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#2890]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2907]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#1195] / [Intel XE#1727])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1195]) +1 other test incomplete
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#3113])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#314]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1152]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#307])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#2791] / [Intel XE#877])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2-set2: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#877]) +1 other test dmesg-warn
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_draw_crc@fill-fb:
- shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2351] / [Intel XE#2890])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_draw_crc@fill-fb.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_draw_crc@fill-fb.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#776])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1138])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][52] -> [FAIL][53] ([Intel XE#301]) +3 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#3098] / [Intel XE#886])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#3098])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-8/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#886]) +4 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [PASS][60] -> [FAIL][61] ([Intel XE#301]) +1 other test fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2293])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455]) +14 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#651]) +21 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [FAIL][65] ([Intel XE#2333])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#653]) +20 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2313])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#605])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#1503])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#616]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-bmg: NOTRUN -> [DMESG-WARN][74] ([Intel XE#3177]) +7 other tests dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2763]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2763]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2763] / [Intel XE#455])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#718]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [PASS][80] -> [DMESG-WARN][81] ([Intel XE#2042])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_prop_blob@blob-multiple:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_prop_blob@blob-multiple.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_prop_blob@blob-multiple.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2890]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1489]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1489])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-lnl: [PASS][88] -> [FAIL][89] ([Intel XE#2948]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2939])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@cursor-rotation-180:
- shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#3007]) +12 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_rotation_crc@cursor-rotation-180.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_rotation_crc@cursor-rotation-180.html
* igt@kms_vblank@query-forked-hang:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_vblank@query-forked-hang.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2168])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#2443]) +1 other test fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#756])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#1473]) +1 other test incomplete
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [PASS][101] -> [FAIL][102] ([Intel XE#1000])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1130]) +8 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#1130])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2322])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_basic@once-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][106] -> [SKIP][107] ([Intel XE#1130]) +23 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_exec_basic@once-bindexecqueue-userptr-rebind.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_exec_basic@once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#288]) +12 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#2105])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: NOTRUN -> [TIMEOUT][111] ([Intel XE#2105])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2905]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-twice:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2905])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-lnl: [PASS][114] -> [DMESG-WARN][115] ([Intel XE#3184]) +1 other test dmesg-warn
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2229])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][117] ([Intel XE#1999]) +2 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2541]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@xe_oa@missing-sample-flags.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2839] / [Intel XE#977])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][120] ([Intel XE#1173]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2284] / [Intel XE#366])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][122] -> [ABORT][123] ([Intel XE#1358] / [Intel XE#1607])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_pm@s4-basic.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][124] -> [ABORT][125] ([Intel XE#1794])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][126] -> [FAIL][127] ([Intel XE#958])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#944]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
* igt@xe_vm@large-userptr-split-misaligned-binds-536870912:
- shard-bmg: [PASS][129] -> [SKIP][130] ([Intel XE#1130]) +33 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][131] ([Intel XE#2134]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@fbdev@write.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@fbdev@write.html
- shard-bmg: [SKIP][133] ([Intel XE#2134]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@fbdev@write.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][135] ([Intel XE#829]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][137] ([Intel XE#829]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-bmg: [SKIP][139] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-bmg: [FAIL][141] ([Intel XE#2436]) -> [PASS][142] +3 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][143] ([Intel XE#3007]) -> [PASS][144] +4 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-lnl: [FAIL][145] ([Intel XE#1475]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- shard-bmg: [SKIP][147] ([Intel XE#2231]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2-set2: [SKIP][149] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][151] ([Intel XE#301]) -> [PASS][152] +3 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][153] ([Intel XE#301]) -> [PASS][154] +5 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-set2: [ABORT][155] ([Intel XE#2625]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [ABORT][157] -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [FAIL][159] ([Intel XE#1204]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [FAIL][161] ([Intel XE#886]) -> [PASS][162] +6 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][163] ([Intel XE#783]) -> [PASS][164] +1 other test pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][165] ([Intel XE#2890]) -> [PASS][166] +3 other tests pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [SKIP][167] ([Intel XE#3187]) -> [PASS][168] +11 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][169] ([Intel XE#616]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_plane_cursor@viewport.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_plane_cursor@viewport.html
* igt@kms_prop_blob@invalid-set-prop-any:
- shard-dg2-set2: [SKIP][171] ([Intel XE#2423] / [i915#2575]) -> [PASS][172] +5 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_prop_blob@invalid-set-prop-any.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [SKIP][173] ([Intel XE#3189]) -> [PASS][174] +10 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr@psr2-cursor-blt@edp-1:
- shard-lnl: [FAIL][175] ([Intel XE#2948]) -> [PASS][176] +3 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-4/igt@kms_psr@psr2-cursor-blt@edp-1.html
* igt@kms_psr@psr2-primary-blt@edp-1:
- shard-lnl: [FAIL][177] ([Intel XE#1649]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-8/igt@kms_psr@psr2-primary-blt@edp-1.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-bmg: [INCOMPLETE][179] -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [FAIL][181] ([Intel XE#1523]) -> [PASS][182] +1 other test pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-6/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][183] ([Intel XE#2443]) -> [PASS][184] +1 other test pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@kms_vrr@flip-basic.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-3/igt@kms_vrr@flip-basic.html
* igt@xe_drm_fdinfo@utilization-others-idle:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1130]) -> [PASS][186] +12 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@xe_drm_fdinfo@utilization-others-idle.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][187] ([Intel XE#2364]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][189] ([Intel XE#1473]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_compute_mode@many-userptr-invalidate:
- shard-lnl: [DMESG-WARN][191] ([Intel XE#2687]) -> [PASS][192] +2 other tests pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-6/igt@xe_exec_compute_mode@many-userptr-invalidate.html
* igt@xe_exec_compute_mode@non-blocking:
- shard-bmg: [SKIP][193] ([Intel XE#1130]) -> [PASS][194] +15 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_exec_compute_mode@non-blocking.html
* igt@xe_exec_reset@parallel-close-fd:
- shard-bmg: [FAIL][195] -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@xe_exec_reset@parallel-close-fd.html
- shard-dg2-set2: [FAIL][197] -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][199] ([Intel XE#2136]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][201] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: [FAIL][203] -> [PASS][204] +2 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents@ccs-0.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-2/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][205] ([Intel XE#2514]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@d3hot-mocs:
- shard-lnl: [DMESG-WARN][207] ([Intel XE#3184]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_pm@d3hot-mocs.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-lnl-3/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-dg2-set2: [INCOMPLETE][209] ([Intel XE#1195]) -> [PASS][210] +1 other test pass
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@xe_pm_residency@idle-residency-on-exec.html
- shard-bmg: [INCOMPLETE][211] ([Intel XE#2655]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: [SKIP][213] ([Intel XE#2370]) -> [SKIP][214] ([Intel XE#3007])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-bmg: [SKIP][215] ([Intel XE#2231]) -> [SKIP][216] ([Intel XE#1124])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][217] ([Intel XE#829]) -> [SKIP][218] ([Intel XE#1124])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
- shard-bmg: [SKIP][219] ([Intel XE#829]) -> [SKIP][220] ([Intel XE#1124])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#1124])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
- shard-dg2-set2: [SKIP][223] ([Intel XE#2890]) -> [SKIP][224] ([Intel XE#1124]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1124]) -> [SKIP][226] ([Intel XE#2890]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
- shard-bmg: [SKIP][227] ([Intel XE#1124]) -> [SKIP][228] ([Intel XE#2231]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][229] ([Intel XE#607]) -> [SKIP][230] ([Intel XE#2231] / [Intel XE#2890])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: [SKIP][231] ([Intel XE#607]) -> [SKIP][232] ([Intel XE#2890])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: [SKIP][233] ([Intel XE#2423] / [i915#2575]) -> [SKIP][234] ([Intel XE#367])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][235] ([Intel XE#3189]) -> [SKIP][236] ([Intel XE#367])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
- shard-dg2-set2: [SKIP][237] ([Intel XE#3187]) -> [SKIP][238] ([Intel XE#367])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][239] -> [SKIP][240] ([Intel XE#2887])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][241] ([Intel XE#829]) -> [SKIP][242] ([Intel XE#455] / [Intel XE#787])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][243] ([Intel XE#2887]) -> [SKIP][244] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
- shard-dg2-set2: [SKIP][245] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][246] ([Intel XE#2890])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][247] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][248] ([Intel XE#2887])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
- shard-dg2-set2: [SKIP][249] ([Intel XE#2890]) -> [SKIP][250] ([Intel XE#455] / [Intel XE#787])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][251] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][252] ([Intel XE#2351] / [Intel XE#2890])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][253] ([Intel XE#2231]) -> [SKIP][254] ([Intel XE#2724])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cdclk@plane-scaling.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][255] ([Intel XE#2252]) -> [SKIP][256] ([Intel XE#3007]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
- shard-dg2-set2: [SKIP][257] ([Intel XE#373]) -> [SKIP][258] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: [SKIP][259] ([Intel XE#3007]) -> [SKIP][260] ([Intel XE#2252])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-dg2-set2: [SKIP][261] ([Intel XE#2423] / [i915#2575]) -> [SKIP][262] ([Intel XE#373])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][263] ([Intel XE#3189]) -> [SKIP][264] ([Intel XE#2390])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: [SKIP][265] ([Intel XE#3187]) -> [SKIP][266] ([Intel XE#307])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [DMESG-FAIL][267] ([Intel XE#3177]) -> [SKIP][268] ([Intel XE#3007])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_content_protection@legacy.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_content_protection@legacy.html
- shard-dg2-set2: [FAIL][269] ([Intel XE#1178]) -> [SKIP][270] ([Intel XE#2423] / [i915#2575])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_content_protection@legacy.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: [SKIP][271] ([Intel XE#3007]) -> [SKIP][272] ([Intel XE#2341])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-bmg: [SKIP][273] ([Intel XE#2320]) -> [SKIP][274] ([Intel XE#3007])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: [SKIP][275] ([Intel XE#1508]) -> [SKIP][276] ([Intel XE#2231])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: [SKIP][277] ([Intel XE#2244]) -> [SKIP][278] ([Intel XE#2231] / [Intel XE#2890])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_dsc@dsc-basic.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_dsc@dsc-basic.html
- shard-dg2-set2: [SKIP][279] ([Intel XE#455]) -> [SKIP][280] ([Intel XE#2351])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_dsc@dsc-basic.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: [SKIP][281] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][282] ([Intel XE#2244])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [SKIP][283] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][284] ([Intel XE#1695])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][285] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][286] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][287] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][288] ([Intel XE#2231])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][289] ([Intel XE#455]) -> [SKIP][290] ([Intel XE#2351] / [Intel XE#2890])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: [SKIP][291] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][292] ([Intel XE#2293] / [Intel XE#2380])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg2-set2: [SKIP][293] ([Intel XE#2890]) -> [SKIP][294] ([Intel XE#455])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][295] ([Intel XE#455]) -> [SKIP][296] ([Intel XE#2890]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][297] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][298] ([Intel XE#2311])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
- shard-dg2-set2: [SKIP][299] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][300] ([Intel XE#651])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2-set2: [SKIP][301] ([Intel XE#3187]) -> [SKIP][302] ([Intel XE#651]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][303] ([Intel XE#651]) -> [SKIP][304] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][305] ([Intel XE#2311]) -> [SKIP][306] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][307] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][308] ([Intel XE#2333]) +2 other tests fail
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][309] ([Intel XE#3189]) -> [FAIL][310] ([Intel XE#2333]) +2 other tests fail
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [FAIL][311] ([Intel XE#2333]) -> [SKIP][312] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][313] ([Intel XE#2311]) -> [SKIP][314] ([Intel XE#2231])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][315] ([Intel XE#651]) -> [SKIP][316] ([Intel XE#2890]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][317] ([Intel XE#3189]) -> [SKIP][318] ([Intel XE#2311]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-bmg: [SKIP][319] ([Intel XE#2231]) -> [SKIP][320] ([Intel XE#2311]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
- shard-dg2-set2: [SKIP][321] ([Intel XE#2890]) -> [SKIP][322] ([Intel XE#651]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][323] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][324] ([Intel XE#2313]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
- shard-dg2-set2: [SKIP][325] ([Intel XE#2890]) -> [SKIP][326] ([Intel XE#653]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][327] ([Intel XE#2313]) -> [SKIP][328] ([Intel XE#2231]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][329] ([Intel XE#3187]) -> [SKIP][330] ([Intel XE#653]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][331] ([Intel XE#783]) -> [SKIP][332] ([Intel XE#2890])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
- shard-bmg: [SKIP][333] ([Intel XE#3189]) -> [SKIP][334] ([Intel XE#2231])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][335] ([Intel XE#653]) -> [SKIP][336] ([Intel XE#2890]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][337] ([Intel XE#3189]) -> [SKIP][338] ([Intel XE#2313]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][339] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][340] ([Intel XE#653]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-bmg: [SKIP][341] ([Intel XE#2231]) -> [SKIP][342] ([Intel XE#2313])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][343] ([Intel XE#653]) -> [SKIP][344] ([Intel XE#2351] / [Intel XE#2890])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-bmg: [SKIP][345] ([Intel XE#2313]) -> [SKIP][346] ([Intel XE#2231] / [Intel XE#2890])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: [SKIP][347] ([Intel XE#2231]) -> [SKIP][348] ([Intel XE#2934])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2-set2: [SKIP][349] ([Intel XE#2890]) -> [SKIP][350] ([Intel XE#2925])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][351] ([Intel XE#2934]) -> [SKIP][352] ([Intel XE#2231])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: [SKIP][353] ([Intel XE#2925]) -> [SKIP][354] ([Intel XE#2890])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-bmg: [SKIP][355] ([Intel XE#3007]) -> [DMESG-WARN][356] ([Intel XE#3177])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-bmg: [SKIP][357] ([Intel XE#3189]) -> [SKIP][358] ([Intel XE#2763])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-dg2-set2: [SKIP][359] ([Intel XE#3187]) -> [SKIP][360] ([Intel XE#2763] / [Intel XE#455])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-bmg: [SKIP][361] ([Intel XE#3007]) -> [DMESG-WARN][362] ([Intel XE#2566] / [Intel XE#3177])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20:
- shard-bmg: [DMESG-WARN][363] ([Intel XE#2566]) -> [DMESG-WARN][364] ([Intel XE#2566] / [Intel XE#3177]) +16 other tests dmesg-warn
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][365] ([Intel XE#3187]) -> [SKIP][366] ([Intel XE#1489]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-bmg: [SKIP][367] ([Intel XE#3189]) -> [SKIP][368] ([Intel XE#1489]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: [SKIP][369] ([Intel XE#1489]) -> [SKIP][370] ([Intel XE#2231])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-bmg: [SKIP][371] ([Intel XE#2231]) -> [SKIP][372] ([Intel XE#2234] / [Intel XE#2850])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-bmg: [SKIP][373] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][374] ([Intel XE#2231]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_psr@fbc-psr-sprite-blt.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: [SKIP][375] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][376] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-blt.html
- shard-dg2-set2: [SKIP][377] ([Intel XE#2890]) -> [SKIP][378] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][379] ([Intel XE#3187]) -> [SKIP][380] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html
- shard-bmg: [SKIP][381] ([Intel XE#3189]) -> [SKIP][382] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-2/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: [SKIP][383] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][384] ([Intel XE#2231] / [Intel XE#2890])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@psr-cursor-plane-onoff.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_psr@psr-cursor-plane-onoff.html
- shard-dg2-set2: [SKIP][385] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][386] ([Intel XE#2890]) +2 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_psr@psr-cursor-plane-onoff.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][387] ([Intel XE#1729]) -> [SKIP][388] ([Intel XE#362])
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][389] ([Intel XE#2423] / [i915#2575]) -> [SKIP][390] ([Intel XE#455]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@kms_vrr@flip-dpms.html
- shard-bmg: [SKIP][391] ([Intel XE#3007]) -> [SKIP][392] ([Intel XE#1499])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_vrr@flip-dpms.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][393] ([Intel XE#3189]) -> [SKIP][394] ([Intel XE#1499])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vrr@max-min.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@kms_vrr@max-min.html
- shard-dg2-set2: [SKIP][395] ([Intel XE#3187]) -> [SKIP][396] ([Intel XE#455])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-466/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: [SKIP][397] ([Intel XE#1499]) -> [SKIP][398] ([Intel XE#3007])
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2-set2: [SKIP][399] ([Intel XE#455]) -> [SKIP][400] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_vrr@seamless-rr-switch-drrs.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: [SKIP][401] ([Intel XE#2905]) -> [SKIP][402] ([Intel XE#1130]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
- shard-dg2-set2: [SKIP][403] ([Intel XE#2905]) -> [SKIP][404] ([Intel XE#1130]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@breakpoint-not-in-debug-mode:
- shard-bmg: [SKIP][405] ([Intel XE#1130]) -> [SKIP][406] ([Intel XE#2905])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
- shard-dg2-set2: [SKIP][407] ([Intel XE#1130]) -> [SKIP][408] ([Intel XE#2905])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-464/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][409] ([Intel XE#2322]) -> [SKIP][410] ([Intel XE#1130])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: [SKIP][411] ([Intel XE#1130]) -> [SKIP][412] ([Intel XE#2322])
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-7/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][413] ([Intel XE#288]) -> [SKIP][414] ([Intel XE#1130]) +3 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][415] ([Intel XE#1130]) -> [SKIP][416] ([Intel XE#288]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [TIMEOUT][417] ([Intel XE#2961]) -> [TIMEOUT][418] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_live_ktest@xe_bo.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][419] ([Intel XE#2245]) -> [SKIP][420] ([Intel XE#2237] / [Intel XE#2245])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelp.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: [SKIP][421] ([Intel XE#2236]) -> [SKIP][422] ([Intel XE#1130])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelpg.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: [SKIP][423] ([Intel XE#1130]) -> [SKIP][424] ([Intel XE#2284])
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
- shard-dg2-set2: [SKIP][425] ([Intel XE#1130]) -> [SKIP][426] ([Intel XE#2284] / [Intel XE#366])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][427] ([Intel XE#1358]) -> [SKIP][428] ([Intel XE#1130])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-dg2-463/igt@xe_pm@s4-basic.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: [SKIP][429] ([Intel XE#944]) -> [SKIP][430] ([Intel XE#1130])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@xe_query@multigpu-query-invalid-size.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/shard-bmg-5/igt@xe_query@multigpu-query-invalid-size.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[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#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2655]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2655
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[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#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3187]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3187
[Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8080 -> IGTPW_11948
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56
IGTPW_11948: c989af852b4fd44ed6e7641579293daf5ecbe954 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2106-aa0898115bcff3eda6d021cc66eb8a1c3b264c56: aa0898115bcff3eda6d021cc66eb8a1c3b264c56
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11948/index.html
[-- Attachment #2: Type: text/html, Size: 123527 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj
2024-10-22 2:29 ` [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
@ 2024-11-07 5:28 ` Karthik B S
0 siblings, 0 replies; 7+ messages in thread
From: Karthik B S @ 2024-11-07 5:28 UTC (permalink / raw)
To: Santhosh Reddy Guddati, igt-dev
On 10/22/2024 7:59 AM, Santhosh Reddy Guddati wrote:
> Add a subtest to validate switching from ultra joiner to big joiner
> and vice-versa.
>
> v2: Add new subtests for switching without force joiner (Karthik)
> v3: start with uj to bj switch, if not available switch to force mode
> v4: check for uj, bj support before starting dynamic tests (karthik)
> call reset_connectors after forcing to uj
> v5: Add a separate function to switch modes and execute test for each
> connected supported output (karthik)
>
> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> tests/intel/kms_joiner.c | 94 ++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 94 insertions(+)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
> index 9a353ee1b..88d1567d7 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -71,6 +71,9 @@
> * SUBTEST: invalid-modeset-force-ultra-joiner
> * Description: Verify if the modeset on the other pipes are rejected when
> * the pipe A is active with force ultra joiner modeset.
> + *
> + * SUBTEST: switch-modeset-ultra-joiner-big-joiner
> + * Description: Verify switching between ultra joiner and big joiner modeset.
> */
> IGT_TEST_DESCRIPTION("Test joiner / force joiner");
>
> @@ -161,6 +164,82 @@ static enum pipe setup_pipe(data_t *data, igt_output_t *output, enum pipe pipe,
> return master_pipe;
> }
>
> +static void set_joiner_mode(data_t *data, igt_output_t *output, drmModeModeInfo *mode)
> +{
> + igt_plane_t *primary;
> + igt_fb_t fb;
> +
> + igt_output_set_pipe(output, PIPE_A);
> + igt_output_override_mode(output, mode);
> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR, &fb);
> + igt_plane_set_fb(primary, &fb);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + igt_display_reset(&data->display);
> + igt_reset_connectors();
> + igt_plane_set_fb(primary, NULL);
> + igt_remove_fb(data->drm_fd, &fb);
> +}
> +
> +static void switch_modeset_ultra_joiner_big_joiner(data_t *data, igt_output_t *output)
> +{
> + drmModeModeInfo bj_mode;
> + drmModeModeInfo uj_mode;
> + int status;
> + bool ultrajoiner_found;
> + enum pipe pipe;
> +
> + drmModeConnector *connector = output->config.connector;
> +
> + igt_display_reset(&data->display);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +
> + ultrajoiner_found = ultrajoiner_mode_found(data->drm_fd, connector, max_dotclock, &uj_mode);
> +
> + if (ultrajoiner_found) {
Hi Santhosh,
> + uj_mode = *igt_output_get_mode(output);
This is redundant as this is already being populated in the previous
function. Please remove this.
> + } else if (data->non_ultra_joiner_output_count > 0) {
> + status = kmstest_force_connector_joiner(data->drm_fd, output->config.connector,
> + JOINED_PIPES_ULTRA_JOINER);
> + igt_assert_f(status, "Failed to toggle force joiner\n");
> + uj_mode = *igt_output_get_mode(output);
This sequence will lead to test fail whenever we have an output which
doesn't support either UJ or force UJ. Please use
"force_joiner_supported && is_dsc_supported_by_sink" check before
toggling the joiner debugfs.
> + } else {
> + igt_skip("No ultra joiner mode found on output %s\n", output->name);
> + }
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> + set_joiner_mode(data, output, &uj_mode);
> + /* Switch to big joiner mode */
> + if (bigjoiner_mode_found(data->drm_fd, output->config.connector,
> + max_dotclock, &bj_mode)) {
> + bj_mode = *igt_output_get_mode(output);
> + igt_output_override_mode(output, &bj_mode);
Same as above.
> + } else {
> + status = kmstest_force_connector_joiner(data->drm_fd,
> + output->config.connector,
> + JOINED_PIPES_BIG_JOINER);
> + igt_assert_f(status, "Failed to toggle force joiner\n");
> + bj_mode = *igt_output_get_mode(output);
Same as above.
Regards,
Karthik.B.S
> + }
> +
> + set_joiner_mode(data, output, &bj_mode);
> +
> + /* Switch back to ultra joiner*/
> + if (ultrajoiner_found) {
> + igt_output_override_mode(output, &uj_mode);
> + } else {
> + status = kmstest_force_connector_joiner(data->drm_fd,
> + output->config.connector,
> + JOINED_PIPES_ULTRA_JOINER);
> + igt_assert_f(status, "Failed to toggle force joiner\n");
> + }
> +
> + set_joiner_mode(data, output, &uj_mode);
> + }
> +}
> +
> static void test_single_joiner(data_t *data, int output_count, bool force_joiner)
> {
> int i;
> @@ -592,6 +671,21 @@ igt_main
> }
> }
>
> + igt_describe("Verify modeset switch between ultra joiner and big joiner");
> + igt_subtest_with_dynamic("switch-modeset-ultra-joiner-big-joiner") {
> + igt_require_f(ultra_joiner_supported,
> + "Ultra joiner not supported on this platform\n");
> + igt_require_f(data.ultra_joiner_output_count > 0 ||
> + data.non_ultra_joiner_output_count > 0,
> + "No ultra joiner or force ultra joiner output found\n");
> + igt_require_f(data.n_pipes > 3,
> + "Minimum 4 pipes required\n");
> +
> + for_each_connected_output(&data.display, output) {
> + switch_modeset_ultra_joiner_big_joiner(&data, output);
> + }
> + }
> +
> igt_subtest_with_dynamic("invalid-modeset-force-ultra-joiner") {
> igt_require_f(ultra_joiner_supported,
> "Ultra joiner not supported on this platform\n");
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-11-07 5:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-22 2:29 [PATCH i-g-t v5 0/1] tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa Santhosh Reddy Guddati
2024-10-22 2:29 ` [PATCH i-g-t v5 1/1] tests/intel/kms_joiner: switch modeset between uj and bj Santhosh Reddy Guddati
2024-11-07 5:28 ` Karthik B S
2024-10-22 4:08 ` ✓ Fi.CI.BAT: success for tests/intel/kms_joiner: switch modeset from uj to bj and vice-versa (rev5) Patchwork
2024-10-22 4:11 ` ✓ CI.xeBAT: " Patchwork
2024-10-22 5:22 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-22 10:16 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox