* [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states
@ 2024-10-21 9:00 Sk Anirban
2024-10-21 9:00 ` [i-g-t, v3, 1/2] tests/intel/xe_pm_residency: Add GT coarse power gating validation Sk Anirban
` (11 more replies)
0 siblings, 12 replies; 15+ messages in thread
From: Sk Anirban @ 2024-10-21 9:00 UTC (permalink / raw)
To: igt-dev; +Cc: Sk Anirban
Implement test cpg-basic to validate coarse power gating status
after S3 cycle.
Add test cpg-gt-toggle to check if GT coarse power gating is up when
forcewake is acquired and down when released.
v2: Address cosmetic review comments (Riana)
Fix suspend state (Riana)
Add exit handler for test cpg-gt-toggle (Riana)
v3: Address cosmetic review comments (Riana)
Fix commit message & test name (Konieczny)
Sk Anirban (2):
tests/intel/xe_pm_residency: Add GT coarse power gating validation
HAX: Add Coarse power gating tests to fast feedback list
tests/intel-ci/xe-fast-feedback.testlist | 2 +
tests/intel/xe_pm_residency.c | 92 ++++++++++++++++++++++++
2 files changed, 94 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [i-g-t, v3, 1/2] tests/intel/xe_pm_residency: Add GT coarse power gating validation 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban @ 2024-10-21 9:00 ` Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 2/2] HAX: Add Coarse power gating tests to fast feedback list Sk Anirban ` (10 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Sk Anirban @ 2024-10-21 9:00 UTC (permalink / raw) To: igt-dev; +Cc: Sk Anirban Implement test cpg-basic to validate coarse power gating status after S3 cycle. Add test cpg-gt-toggle to check if GT coarse power gating is up when forcewake is acquired and down when released. v2: Address cosmetic review comments (Riana) Fix suspend state (Riana) Add exit handler for test cpg-gt-toggle (Riana) v3: Address cosmetic review comments (Riana) Fix commit message & test name (Konieczny) Signed-off-by: Sk Anirban <sk.anirban@intel.com> --- tests/intel/xe_pm_residency.c | 92 +++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c index 772fe9b57..29316514a 100644 --- a/tests/intel/xe_pm_residency.c +++ b/tests/intel/xe_pm_residency.c @@ -63,6 +63,12 @@ enum test_type { * SUBTEST: toggle-gt-c6 * Description: toggles GT C states by acquiring/releasing forcewake, * also validates power consumed by GPU in GT C6 is lesser than that of GT C0. + * + * SUBTEST: cpg-basic + * Description: Validate GT coarse power gating status with S3 cycle. + * + * SUBTEST: cpg-gt-toggle + * Description: Toggle GT coarse power gating states by acquiring/releasing forcewake. */ IGT_TEST_DESCRIPTION("Tests for gtidle properties"); @@ -317,6 +323,81 @@ static void toggle_gt_c6(int fd, int n) "Power consumed in GT C6 should be lower than GT C0\n"); } + +static void cpg_enabled(int fd, int gt) +{ + int dir; + char str[512], path[64], *render_substr, *media_substr; + const char *render_power_gating = "Render Power Gating Enabled: "; + const char *media_power_gating = "Media Power Gating Enabled: "; + + dir = igt_debugfs_gt_dir(fd, gt); + igt_assert(dir >= 0); + + snprintf(path, sizeof(path), "gt%d/powergate_info", gt); + igt_debugfs_read(fd, path, str); + close(dir); + + render_substr = strstr(str, render_power_gating); + if (render_substr) + igt_assert_f(strncmp(render_substr + strlen(render_power_gating), "yes", 3) == 0, + "Render Power Gating should be enabled"); + + media_substr = strstr(str, media_power_gating); + if (media_substr) + igt_assert_f(strncmp(media_substr + strlen(media_power_gating), "yes", 3) == 0, + "Media Power Gating should be enabled"); +} + + +static void powergate_status(int fd, int gt, const char *expected_status) +{ + int dir; + char str[512], path[64], *status_substr; + const char *power_gate_status = "Power Gate Status: "; + + dir = igt_debugfs_gt_dir(fd, gt); + igt_assert(dir >= 0); + + snprintf(path, sizeof(path), "gt%d/powergate_info", gt); + igt_debugfs_read(fd, path, str); + close(dir); + + status_substr = strstr(str, power_gate_status); + while (status_substr) { + igt_assert_f((strncmp(status_substr + strlen(power_gate_status), expected_status, + strlen(expected_status)) == 0), + "Power Gate Status Should be %s\n %s\n", expected_status, str); + status_substr = strstr(status_substr + strlen(power_gate_status), power_gate_status); + } +} + +static void cpg_basic(int fd, int gt) +{ + cpg_enabled(fd, gt); + igt_system_suspend_autoresume(SUSPEND_STATE_S3, SUSPEND_TEST_NONE); + cpg_enabled(fd, gt); +} + +static void cpg_gt_toggle(int fd) +{ + int gt; + + fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY); + igt_assert_lte(0, fw_handle); + + xe_for_each_gt(fd, gt) + cpg_enabled(fd, gt); + + xe_for_each_gt(fd, gt) + powergate_status(fd, gt, "up"); + + close(fw_handle); + sleep(1); + xe_for_each_gt(fd, gt) + powergate_status(fd, gt, "down"); +} + igt_main { uint32_t d3cold_allowed; @@ -380,6 +461,17 @@ igt_main toggle_gt_c6(fd, NUM_REPS); } + igt_describe("Validate Coarse power gating status with S3 cycle"); + igt_subtest("cpg-basic") + xe_for_each_gt(fd, gt) + cpg_basic(fd, gt); + + igt_describe("Toggle GT coarse power gating states by managing forcewake"); + igt_subtest("cpg-gt-toggle") { + igt_install_exit_handler(close_fw_handle); + cpg_gt_toggle(fd); + } + igt_fixture { close(fd); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [i-g-t, v3, 2/2] HAX: Add Coarse power gating tests to fast feedback list 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 1/2] tests/intel/xe_pm_residency: Add GT coarse power gating validation Sk Anirban @ 2024-10-21 9:00 ` Sk Anirban 2024-10-21 10:12 ` ✗ Fi.CI.BAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork ` (9 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Sk Anirban @ 2024-10-21 9:00 UTC (permalink / raw) To: igt-dev; +Cc: Sk Anirban Add cpg tests cpg-basic and toggle-gt-cpg to xe-fast-feedback Signed-off-by: Sk Anirban <sk.anirban@intel.com> --- tests/intel-ci/xe-fast-feedback.testlist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 01b01dcf9..e9ae799cf 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -159,7 +159,9 @@ igt@xe_mmap@cpu-caching igt@xe_mmap@system igt@xe_mmap@vram igt@xe_mmap@vram-system +igt@xe_pm_residency@cpg-basic igt@xe_pm_residency@gt-c6-on-idle +igt@xe_pm_residency@cpg-gt-toggle igt@xe_prime_self_import@basic-with_one_bo igt@xe_prime_self_import@basic-with_fd_dup #igt@xe_prime_self_import@basic-llseek-size -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 1/2] tests/intel/xe_pm_residency: Add GT coarse power gating validation Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 2/2] HAX: Add Coarse power gating tests to fast feedback list Sk Anirban @ 2024-10-21 10:12 ` Patchwork 2024-10-21 10:16 ` ✗ CI.xeBAT: " Patchwork ` (8 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 10:12 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11211 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from IGT_8080 -> IGTPW_11941 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11941 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11941, 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_11941/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 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11941: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_heartbeat: - bat-apl-1: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-apl-1/igt@i915_selftest@live@gt_heartbeat.html Known issues ------------ Here are the changes found in IGTPW_11941 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@fbdev@eof.html * igt@fbdev@info: - bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - bat-apl-1: NOTRUN -> [SKIP][5] +23 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-apl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-kbl-8809g: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4083]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#11681] / [i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-dg2-14: [PASS][11] -> [DMESG-FAIL][12] ([i915#12133] / [i915#9500]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-14/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][13] -> [DMESG-FAIL][14] ([i915#9500]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-14/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/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][16] ([i915#4215] / [i915#5190]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/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][17] ([i915#4212]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [PASS][18] -> [DMESG-WARN][19] ([i915#12253]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][20] +30 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#5354]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/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][23] ([i915#5274]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/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][24] ([i915#9197]) +16 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_psr@psr-primary-page-flip: - bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#1072] / [i915#9732]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][27] ([i915#3708] / [i915#9197]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][28] ([i915#3708] / [i915#4077]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#3291] / [i915#3708]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - {bat-arlh-3}: [ABORT][30] ([i915#12133]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-arlh-3/igt@i915_selftest@live.html - bat-arlh-2: [ABORT][32] ([i915#12133]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][34] ([i915#12061]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live@workarounds.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [ABORT][36] ([i915#12061]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11941/bat-arlh-2/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8080 -> IGTPW_11941 * Linux: CI_DRM_15559 -> CI_DRM_15571 CI-20190529: 20190529 CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11941: c8508b6777eb624db114ac60520d035e52d014ea @ 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_11941/index.html [-- Attachment #2: Type: text/html, Size: 13289 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (2 preceding siblings ...) 2024-10-21 10:12 ` ✗ Fi.CI.BAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork @ 2024-10-21 10:16 ` Patchwork 2024-10-21 12:25 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork ` (7 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 10:16 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6117 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11941_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11941_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11941_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11941_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_pm_residency@cpg-basic (NEW): - bat-lnl-2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-lnl-2/igt@xe_pm_residency@cpg-basic.html - bat-atsm-2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-atsm-2/igt@xe_pm_residency@cpg-basic.html - bat-lnl-1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-lnl-1/igt@xe_pm_residency@cpg-basic.html * {igt@xe_pm_residency@cpg-gt-toggle} (NEW): - bat-adlp-vf: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-vf/igt@xe_pm_residency@cpg-gt-toggle.html - bat-pvc-2: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-pvc-2/igt@xe_pm_residency@cpg-gt-toggle.html New tests --------- New tests have been introduced between XEIGT_8080_BAT and XEIGTPW_11941_BAT: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 4 pass(s) 5 skip(s) - Exec time: [0.0, 6.44] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 7 pass(s) 2 skip(s) - Exec time: [0.0, 1.10] s Known issues ------------ Here are the changes found in XEIGTPW_11941_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][6] -> [FAIL][7] ([Intel XE#1861]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#288]) +32 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#2229]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#2229]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][13] ([Intel XE#2874]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - bat-dg2-oem2: [INCOMPLETE][15] ([Intel XE#2874]) -> [PASS][16] +1 other test pass [15]: 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 [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [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#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11941 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2103-784111a40e40a37100e61736dd137c72cedbdb39 IGTPW_11941: c8508b6777eb624db114ac60520d035e52d014ea @ 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-2103-784111a40e40a37100e61736dd137c72cedbdb39: 784111a40e40a37100e61736dd137c72cedbdb39 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/index.html [-- Attachment #2: Type: text/html, Size: 7134 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (3 preceding siblings ...) 2024-10-21 10:16 ` ✗ CI.xeBAT: " Patchwork @ 2024-10-21 12:25 ` Patchwork 2024-10-21 12:30 ` ✗ Fi.CI.BAT: " Patchwork ` (6 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 12:25 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8936 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11943_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11943_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11943_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11943_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_pm_residency@cpg-basic (NEW): - bat-lnl-2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-lnl-2/igt@xe_pm_residency@cpg-basic.html - bat-atsm-2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-atsm-2/igt@xe_pm_residency@cpg-basic.html - bat-lnl-1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-lnl-1/igt@xe_pm_residency@cpg-basic.html * {igt@xe_pm_residency@cpg-gt-toggle} (NEW): - bat-adlp-vf: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-vf/igt@xe_pm_residency@cpg-gt-toggle.html - bat-pvc-2: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-pvc-2/igt@xe_pm_residency@cpg-gt-toggle.html New tests --------- New tests have been introduced between XEIGT_8080_BAT and XEIGTPW_11943_BAT: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 4 pass(s) 5 skip(s) - Exec time: [0.0, 6.47] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 7 pass(s) 2 skip(s) - Exec time: [0.0, 1.10] s Known issues ------------ Here are the changes found in XEIGTPW_11943_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][6] -> [FAIL][7] ([Intel XE#886]) +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][8] -> [FAIL][9] ([Intel XE#1861]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#288]) +32 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#288]) +32 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][13] ([Intel XE#2229]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][14] ([Intel XE#2229]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][15] ([Intel XE#2874]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - bat-dg2-oem2: [INCOMPLETE][17] ([Intel XE#2874]) -> [PASS][18] +1 other test pass [17]: 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 [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/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][19] ([Intel XE#977]) -> [SKIP][20] ([Intel XE#2839] / [Intel XE#977]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-atsm-2/igt@xe_pat@pat-index-xe2.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-atsm-2/igt@xe_pat@pat-index-xe2.html - bat-adlp-vf: [SKIP][21] ([Intel XE#977]) -> [SKIP][22] ([Intel XE#2839] / [Intel XE#977]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html - bat-adlp-7: [SKIP][23] ([Intel XE#977]) -> [SKIP][24] ([Intel XE#2839] / [Intel XE#977]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_pat@pat-index-xe2.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-adlp-7/igt@xe_pat@pat-index-xe2.html - bat-dg2-oem2: [SKIP][25] ([Intel XE#977]) -> [SKIP][26] ([Intel XE#2839] / [Intel XE#977]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: [SKIP][27] ([Intel XE#2245]) -> [SKIP][28] ([Intel XE#2237] / [Intel XE#2245]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-2/igt@xe_pat@pat-index-xelp.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-bmg-2/igt@xe_pat@pat-index-xelp.html - bat-bmg-1: [SKIP][29] ([Intel XE#2245]) -> [SKIP][30] ([Intel XE#2237] / [Intel XE#2245]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-1/igt@xe_pat@pat-index-xelp.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-bmg-1/igt@xe_pat@pat-index-xelp.html - bat-lnl-2: [SKIP][31] ([Intel XE#977]) -> [SKIP][32] ([Intel XE#2237] / [Intel XE#977]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-2/igt@xe_pat@pat-index-xelp.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/bat-lnl-2/igt@xe_pat@pat-index-xelp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11943 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2103-784111a40e40a37100e61736dd137c72cedbdb39 IGTPW_11943: 11943 IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2103-784111a40e40a37100e61736dd137c72cedbdb39: 784111a40e40a37100e61736dd137c72cedbdb39 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/index.html [-- Attachment #2: Type: text/html, Size: 11270 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (4 preceding siblings ...) 2024-10-21 12:25 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork @ 2024-10-21 12:30 ` Patchwork 2024-10-21 13:26 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork ` (5 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 12:30 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9322 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from IGT_8080 -> IGTPW_11943 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11943 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11943, 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_11943/index.html Participating hosts (43 -> 41) ------------------------------ Additional (2): bat-apl-1 fi-kbl-8809g Missing (4): bat-dg2-14 bat-dg1-7 fi-snb-2520m bat-dg1-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11943: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@basic: - bat-atsm-1: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-atsm-1/igt@gem_lmem_swapping@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-atsm-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-atsm-1: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-atsm-1/igt@gem_lmem_swapping@verify-random.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-atsm-1/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@requests: - bat-atsm-1: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-atsm-1/igt@i915_selftest@live@requests.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-atsm-1/igt@i915_selftest@live@requests.html Known issues ------------ Here are the changes found in IGTPW_11943 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][7] ([i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - bat-apl-1: NOTRUN -> [SKIP][8] +23 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-apl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-kbl-8809g: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][10] -> [ABORT][11] ([i915#12216]) +1 other test abort [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-8/igt@i915_selftest@live.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-mtlp-8/igt@i915_selftest@live.html - bat-arls-2: [PASS][12] -> [ABORT][13] ([i915#12133]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arls-2/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arls-2/igt@i915_selftest@live.html - bat-atsm-1: [PASS][14] -> [ABORT][15] ([i915#12133]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-atsm-1/igt@i915_selftest@live.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@guc: - bat-arlh-3: NOTRUN -> [INCOMPLETE][16] ([i915#12133]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arlh-3/igt@i915_selftest@live@guc.html * igt@i915_selftest@live@workarounds: - bat-arls-2: [PASS][17] -> [ABORT][18] ([i915#12061]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arls-2/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arls-2/igt@i915_selftest@live@workarounds.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][19] +30 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-2: [ABORT][20] ([i915#12133]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][22] ([i915#12061]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live@workarounds.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arlh-2: [ABORT][24] ([i915#12061]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arlh-2/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arlh-3: [ABORT][26] ([i915#12133]) -> [INCOMPLETE][27] ([i915#10341] / [i915#12133]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-3/igt@i915_selftest@live.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-arlh-3/igt@i915_selftest@live.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: [SKIP][28] ([i915#5190] / [i915#9792]) -> [SKIP][29] ([i915#4212] / [i915#5190] / [i915#9792]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-11: [SKIP][30] ([i915#5190]) -> [SKIP][31] ([i915#4212] / [i915#5190]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-mtlp-8: [SKIP][32] ([i915#5190]) -> [SKIP][33] ([i915#4212] / [i915#5190]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-8: [SKIP][34] ([i915#5190]) -> [SKIP][35] ([i915#4212] / [i915#5190]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/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][36] ([i915#4215] / [i915#5190]) -> [SKIP][37] ([i915#4212] / [i915#4215] / [i915#5190]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-11: [SKIP][38] ([i915#4215] / [i915#5190]) -> [SKIP][39] ([i915#4212] / [i915#4215] / [i915#5190]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11943/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [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#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8080 -> IGTPW_11943 * Linux: CI_DRM_15559 -> CI_DRM_15571 CI-20190529: 20190529 CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15571: 784111a40e40a37100e61736dd137c72cedbdb39 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11943: 11943 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_11943/index.html [-- Attachment #2: Type: text/html, Size: 12330 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (5 preceding siblings ...) 2024-10-21 12:30 ` ✗ Fi.CI.BAT: " Patchwork @ 2024-10-21 13:26 ` Patchwork 2024-10-21 15:22 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork ` (4 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 13:26 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82794 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11941_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11941_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11941_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_11941_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_edge_walk@64x64-top-bottom: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_edge_walk@64x64-top-bottom.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_cursor_edge_walk@64x64-top-bottom.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-68: - shard-lnl: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html * igt@xe_drm_fdinfo@utilization-single-full-load: - shard-lnl: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - shard-bmg: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html - shard-dg2-set2: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_pm_residency@cpg-basic (NEW): - shard-lnl: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@xe_pm_residency@cpg-basic.html New tests --------- New tests have been introduced between XEIGT_8080_full and XEIGTPW_11941_full: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 4.99] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 3 pass(s) - Exec time: [1.00] s Known issues ------------ Here are the changes found in XEIGTPW_11941_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#623]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2-set2: [PASS][12] -> [FAIL][13] ([Intel XE#827]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_async_flips@alternate-sync-async-flip.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/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_11941/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2: - shard-bmg: [PASS][15] -> [FAIL][16] ([Intel XE#1426]) +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2231]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2351] / [Intel XE#2890]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.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_11941/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_11941/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_11941/shard-dg2-463/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]) +69 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/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_11941/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/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][28] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/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-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1195] / [Intel XE#3113]) [29]: 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@pipe-b-dp-4.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - 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-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#3113]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1195]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-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_11941/shard-dg2-436/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_11941/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#306]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +6 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/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_11941/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_11941/shard-dg2-436/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_11941/shard-bmg-1/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_11941/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#877]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#1475]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.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_11941/shard-dg2-436/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_11941/shard-dg2-464/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#301]) +6 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#301]) +2 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#886]) [56]: 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 [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2-set2: [PASS][58] -> [SKIP][59] ([Intel XE#2890]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2231] / [Intel XE#2890]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.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_11941/shard-bmg-8/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_11941/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]) +20 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-433/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_11941/shard-bmg-5/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_11941/shard-bmg-8/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]) +23 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/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_11941/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_11941/shard-dg2-463/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#3007]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_hdr@static-toggle.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_hdr@static-toggle.html - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#2423] / [i915#2575]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_hdr@static-toggle.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_hdr@static-toggle.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#361]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2763]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#3177]) +11 other tests dmesg-warn [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/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][79] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/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][80] -> [FAIL][81] ([Intel XE#718]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1489]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1489]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1122]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#1649]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2939]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#899]) +2 other tests fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2168]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-suspend@pipe-a-edp-1: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#2443]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#756]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#1473]) +1 other test incomplete [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate: - shard-lnl: [PASS][99] -> [DMESG-WARN][100] ([Intel XE#2687]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-8/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#1130]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#288]) +13 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@xe_exec_fault_mode@many-basic-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#2105]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html - shard-dg2-set2: NOTRUN -> [TIMEOUT][106] ([Intel XE#2105]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2905]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2905]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt@xe_exec_threads@threads-bal-mixed-fd-rebind: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#1130]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1130]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-fd-rebind.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2229]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/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][113] ([Intel XE#1999]) +2 other tests fail [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2541]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@xe_oa@missing-sample-flags.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2839] / [Intel XE#977]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#979]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][117] ([Intel XE#1173]) +1 other test fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2284] / [Intel XE#366]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#958]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#944]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@xe_query@multigpu-query-engines.html #### Possible fixes #### * igt@fbdev@write: - shard-bmg: [SKIP][122] ([Intel XE#2134]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@fbdev@write.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][124] ([Intel XE#911]) -> [PASS][125] +3 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][126] ([Intel XE#829]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [SKIP][128] ([Intel XE#829]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-0.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-bmg: [SKIP][130] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][132] ([Intel XE#2436]) -> [PASS][133] +3 other tests pass [132]: 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 [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][134] ([Intel XE#3007]) -> [PASS][135] +5 other tests pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][136] ([Intel XE#1475]) -> [PASS][137] [136]: 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 [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-bmg: [SKIP][138] ([Intel XE#2231]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][140] ([Intel XE#301]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [ABORT][142] ([Intel XE#2625]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/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][144] -> [PASS][145] +1 other test pass [144]: 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 [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][146] ([Intel XE#886]) -> [PASS][147] +6 other tests pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - shard-bmg: [FAIL][148] ([Intel XE#301]) -> [PASS][149] +5 other tests pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][150] ([Intel XE#783]) -> [PASS][151] +1 other test pass [150]: 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 [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][152] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][154] ([Intel XE#2890]) -> [PASS][155] +4 other tests pass [154]: 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 [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: [SKIP][156] ([Intel XE#3187]) -> [PASS][157] +11 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_lease@lease-invalid-crtc.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][158] ([Intel XE#361]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_prop_blob@invalid-set-prop-any: - shard-dg2-set2: [SKIP][160] ([Intel XE#2423] / [i915#2575]) -> [PASS][161] +6 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html * igt@kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][162] ([Intel XE#3189]) -> [PASS][163] +10 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [FAIL][164] ([Intel XE#2948]) -> [PASS][165] +3 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-6/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_psr@psr2-primary-blt@edp-1: - shard-lnl: [FAIL][166] ([Intel XE#1649]) -> [PASS][167] +1 other test pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-7/igt@kms_psr@psr2-primary-blt@edp-1.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-bmg: [INCOMPLETE][168] -> [PASS][169] +1 other test pass [168]: 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 [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [FAIL][170] ([Intel XE#1523]) -> [PASS][171] +1 other test pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-5/igt@kms_vblank@accuracy-idle.html * igt@xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: [SKIP][172] ([Intel XE#1130]) -> [PASS][173] +9 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-466/igt@xe_drm_fdinfo@utilization-others-idle.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][174] ([Intel XE#1473]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_compute_mode@many-userptr-invalidate: - shard-lnl: [DMESG-WARN][176] ([Intel XE#2687]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@xe_exec_compute_mode@many-userptr-invalidate.html * igt@xe_exec_compute_mode@non-blocking: - shard-bmg: [SKIP][178] ([Intel XE#1130]) -> [PASS][179] +16 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@xe_exec_compute_mode@non-blocking.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [FAIL][180] -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_module_load@reload-no-display: - shard-bmg: [FAIL][182] ([Intel XE#2136]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [FAIL][184] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][186] -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-4/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][188] ([Intel XE#2514]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@d3hot-mocs: - shard-lnl: [DMESG-WARN][190] ([Intel XE#3184]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_pm@d3hot-mocs.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-lnl-4/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [ABORT][192] ([Intel XE#1358]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_pm@s4-basic.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#1195]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_pm_residency@idle-residency-on-exec.html - shard-bmg: [INCOMPLETE][196] ([Intel XE#2655]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@xe_pm_residency@idle-residency-on-exec.html #### Warnings #### * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][198] ([Intel XE#2231]) -> [SKIP][199] ([Intel XE#1124]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][200] ([Intel XE#829]) -> [SKIP][201] ([Intel XE#1124]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-bmg: [SKIP][202] ([Intel XE#829]) -> [SKIP][203] ([Intel XE#1124]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][204] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][205] ([Intel XE#1124]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-dg2-set2: [SKIP][206] ([Intel XE#2890]) -> [SKIP][207] ([Intel XE#1124]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][208] ([Intel XE#2423] / [i915#2575]) -> [SKIP][209] ([Intel XE#367]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][210] ([Intel XE#3189]) -> [SKIP][211] ([Intel XE#367]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html - shard-dg2-set2: [SKIP][212] ([Intel XE#3187]) -> [SKIP][213] ([Intel XE#367]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][214] -> [SKIP][215] ([Intel XE#2887]) [214]: 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 [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html - shard-dg2-set2: [SKIP][216] ([Intel XE#829]) -> [SKIP][217] ([Intel XE#455] / [Intel XE#787]) [216]: 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 [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][218] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][219] ([Intel XE#2887]) [218]: 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 [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html - shard-dg2-set2: [SKIP][220] ([Intel XE#2890]) -> [SKIP][221] ([Intel XE#455] / [Intel XE#787]) [220]: 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 [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][222] ([Intel XE#2231]) -> [SKIP][223] ([Intel XE#2724]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cdclk@plane-scaling.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][224] ([Intel XE#3007]) -> [SKIP][225] ([Intel XE#2252]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-dg2-set2: [SKIP][226] ([Intel XE#2423] / [i915#2575]) -> [SKIP][227] ([Intel XE#373]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-433/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][228] ([Intel XE#3189]) -> [SKIP][229] ([Intel XE#2390]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: [SKIP][230] ([Intel XE#3187]) -> [SKIP][231] ([Intel XE#307]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][232] ([Intel XE#3007]) -> [SKIP][233] ([Intel XE#2341]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_content_protection@lic-type-1.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][234] ([Intel XE#2320]) -> [SKIP][235] ([Intel XE#3007]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg2-set2: [SKIP][236] ([Intel XE#455]) -> [SKIP][237] ([Intel XE#2423] / [i915#2575]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-32x32.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][238] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][239] ([Intel XE#2244]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg2-set2: [SKIP][240] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][241] ([Intel XE#455]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][242] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][243] ([Intel XE#1695]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][244] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][245] ([Intel XE#2293] / [Intel XE#2380]) [244]: 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 [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][246] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][247] ([Intel XE#2311]) [246]: 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 [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/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][248] ([Intel XE#3187]) -> [SKIP][249] ([Intel XE#651]) +2 other tests skip [248]: 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 [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][250] ([Intel XE#2333]) -> [SKIP][251] ([Intel XE#2231]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][252] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][253] ([Intel XE#2333]) +2 other tests fail [252]: 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 [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [FAIL][254] ([Intel XE#2333]) -> [SKIP][255] ([Intel XE#2231] / [Intel XE#2890]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][256] ([Intel XE#3189]) -> [FAIL][257] ([Intel XE#2333]) +2 other tests fail [256]: 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 [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][258] ([Intel XE#3189]) -> [SKIP][259] ([Intel XE#2311]) +2 other tests skip [258]: 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 [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-stridechange: - shard-bmg: [SKIP][260] ([Intel XE#2311]) -> [SKIP][261] ([Intel XE#2231] / [Intel XE#2890]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html - shard-dg2-set2: [SKIP][262] ([Intel XE#651]) -> [SKIP][263] ([Intel XE#2890]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][264] ([Intel XE#2231]) -> [SKIP][265] ([Intel XE#2311]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html - shard-dg2-set2: [SKIP][266] ([Intel XE#2890]) -> [SKIP][267] ([Intel XE#651]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][268] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][269] ([Intel XE#2313]) +2 other tests skip [268]: 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 [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][270] ([Intel XE#2890]) -> [SKIP][271] ([Intel XE#653]) +1 other test skip [270]: 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 [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][272] ([Intel XE#3187]) -> [SKIP][273] ([Intel XE#653]) +1 other test skip [272]: 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 [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/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][274] ([Intel XE#783]) -> [SKIP][275] ([Intel XE#653]) [274]: 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 [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][276] ([Intel XE#2313]) -> [SKIP][277] ([Intel XE#2231] / [Intel XE#2890]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-dg2-set2: [SKIP][278] ([Intel XE#653]) -> [SKIP][279] ([Intel XE#2890]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][280] ([Intel XE#3189]) -> [SKIP][281] ([Intel XE#2313]) +2 other tests skip [280]: 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 [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/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][282] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][283] ([Intel XE#653]) +1 other test skip [282]: 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 [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-bmg: [SKIP][284] ([Intel XE#2231]) -> [SKIP][285] ([Intel XE#2313]) [284]: 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 [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][286] ([Intel XE#2231]) -> [SKIP][287] ([Intel XE#2934]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][288] ([Intel XE#2890]) -> [SKIP][289] ([Intel XE#2925]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-bmg: [SKIP][290] ([Intel XE#3007]) -> [DMESG-WARN][291] ([Intel XE#3177]) [290]: 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 [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][292] ([Intel XE#3189]) -> [DMESG-WARN][293] ([Intel XE#3177]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][294] ([Intel XE#3189]) -> [SKIP][295] ([Intel XE#2763]) [294]: 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 [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg2-set2: [SKIP][296] ([Intel XE#3187]) -> [SKIP][297] ([Intel XE#2763] / [Intel XE#455]) [296]: 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 [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/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][298] ([Intel XE#3007]) -> [DMESG-WARN][299] ([Intel XE#2566] / [Intel XE#3177]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-bmg: [DMESG-WARN][300] ([Intel XE#2566]) -> [DMESG-WARN][301] ([Intel XE#2566] / [Intel XE#3177]) +16 other tests dmesg-warn [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: [SKIP][302] ([Intel XE#870]) -> [SKIP][303] ([Intel XE#2231]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: [SKIP][304] ([Intel XE#870]) -> [SKIP][305] ([Intel XE#2890]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][306] ([Intel XE#3187]) -> [SKIP][307] ([Intel XE#1489]) +2 other tests skip [306]: 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 [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/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][308] ([Intel XE#3189]) -> [SKIP][309] ([Intel XE#1489]) +2 other tests skip [308]: 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 [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-render: - shard-bmg: [SKIP][310] ([Intel XE#2231]) -> [SKIP][311] ([Intel XE#2234] / [Intel XE#2850]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-dg2-set2: [SKIP][312] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][313] ([Intel XE#2890]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_psr@fbc-psr2-no-drrs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][314] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][315] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-blt.html - shard-dg2-set2: [SKIP][316] ([Intel XE#2890]) -> [SKIP][317] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][318] ([Intel XE#3187]) -> [SKIP][319] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][320] ([Intel XE#3189]) -> [SKIP][321] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-basic: - shard-bmg: [SKIP][322] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][323] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_psr@psr-basic.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-render: - shard-dg2-set2: [SKIP][324] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][325] ([Intel XE#2850] / [Intel XE#929]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@psr-cursor-render.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_psr@psr-cursor-render.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][326] ([Intel XE#2426]) -> [FAIL][327] ([Intel XE#1729]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][328] ([Intel XE#1500]) -> [SKIP][329] ([Intel XE#362]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][330] ([Intel XE#2423] / [i915#2575]) -> [SKIP][331] ([Intel XE#455]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_vrr@flip-dpms.html - shard-bmg: [SKIP][332] ([Intel XE#3007]) -> [SKIP][333] ([Intel XE#1499]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_vrr@flip-dpms.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-bmg: [SKIP][334] ([Intel XE#3189]) -> [SKIP][335] ([Intel XE#1499]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vrr@max-min.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@kms_vrr@max-min.html - shard-dg2-set2: [SKIP][336] ([Intel XE#3187]) -> [SKIP][337] ([Intel XE#455]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-464/igt@kms_vrr@max-min.html * igt@xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-bmg: [SKIP][338] ([Intel XE#1130]) -> [SKIP][339] ([Intel XE#2905]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-7/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html - shard-dg2-set2: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#2905]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-434/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-bmg: [SKIP][342] ([Intel XE#1130]) -> [SKIP][343] ([Intel XE#2322]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@twice-userptr-imm: - shard-dg2-set2: [SKIP][344] ([Intel XE#288]) -> [SKIP][345] ([Intel XE#1130]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-imm.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-imm.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][346] ([Intel XE#1130]) -> [SKIP][347] ([Intel XE#288]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][348] ([Intel XE#1130]) -> [SKIP][349] ([Intel XE#2541]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][350] ([Intel XE#2245]) -> [SKIP][351] ([Intel XE#2237] / [Intel XE#2245]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelp.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][352] ([Intel XE#1130]) -> [SKIP][353] ([Intel XE#2284]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: [SKIP][354] ([Intel XE#1130]) -> [SKIP][355] ([Intel XE#2284] / [Intel XE#366]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#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#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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11941 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2103-784111a40e40a37100e61736dd137c72cedbdb39 IGTPW_11941: c8508b6777eb624db114ac60520d035e52d014ea @ 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-2103-784111a40e40a37100e61736dd137c72cedbdb39: 784111a40e40a37100e61736dd137c72cedbdb39 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11941/index.html [-- Attachment #2: Type: text/html, Size: 102240 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (6 preceding siblings ...) 2024-10-21 13:26 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork @ 2024-10-21 15:22 ` Patchwork 2024-10-21 15:25 ` ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 15:22 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8428 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11944_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11944_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11944_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11944_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@basic-flip-vs-modeset: - bat-lnl-1: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-1/igt@kms_flip@basic-flip-vs-modeset.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-lnl-1/igt@kms_flip@basic-flip-vs-modeset.html * igt@xe_pm_residency@cpg-basic (NEW): - bat-lnl-2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-lnl-2/igt@xe_pm_residency@cpg-basic.html - bat-atsm-2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-atsm-2/igt@xe_pm_residency@cpg-basic.html - bat-lnl-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-lnl-1/igt@xe_pm_residency@cpg-basic.html * {igt@xe_pm_residency@cpg-gt-toggle} (NEW): - bat-adlp-vf: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-vf/igt@xe_pm_residency@cpg-gt-toggle.html - bat-pvc-2: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-pvc-2/igt@xe_pm_residency@cpg-gt-toggle.html New tests --------- New tests have been introduced between XEIGT_8080_BAT and XEIGTPW_11944_BAT: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 4 pass(s) 5 skip(s) - Exec time: [0.0, 6.41] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 7 pass(s) 2 skip(s) - Exec time: [0.0, 1.09] s Known issues ------------ Here are the changes found in XEIGTPW_11944_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#288]) +32 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#2229]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#2229]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][13] ([Intel XE#2874]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html - bat-dg2-oem2: [INCOMPLETE][15] ([Intel XE#2874]) -> [PASS][16] +1 other test pass [15]: 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 [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/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][17] ([Intel XE#977]) -> [SKIP][18] ([Intel XE#2839] / [Intel XE#977]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-atsm-2/igt@xe_pat@pat-index-xe2.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-atsm-2/igt@xe_pat@pat-index-xe2.html - bat-adlp-vf: [SKIP][19] ([Intel XE#977]) -> [SKIP][20] ([Intel XE#2839] / [Intel XE#977]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html - bat-adlp-7: [SKIP][21] ([Intel XE#977]) -> [SKIP][22] ([Intel XE#2839] / [Intel XE#977]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_pat@pat-index-xe2.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-adlp-7/igt@xe_pat@pat-index-xe2.html - bat-dg2-oem2: [SKIP][23] ([Intel XE#977]) -> [SKIP][24] ([Intel XE#2839] / [Intel XE#977]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: [SKIP][25] ([Intel XE#2245]) -> [SKIP][26] ([Intel XE#2237] / [Intel XE#2245]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-2/igt@xe_pat@pat-index-xelp.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-bmg-2/igt@xe_pat@pat-index-xelp.html - bat-bmg-1: [SKIP][27] ([Intel XE#2245]) -> [SKIP][28] ([Intel XE#2237] / [Intel XE#2245]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-bmg-1/igt@xe_pat@pat-index-xelp.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-bmg-1/igt@xe_pat@pat-index-xelp.html - bat-lnl-2: [SKIP][29] ([Intel XE#977]) -> [SKIP][30] ([Intel XE#2237] / [Intel XE#977]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-lnl-2/igt@xe_pat@pat-index-xelp.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/bat-lnl-2/igt@xe_pat@pat-index-xelp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11944 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2105-186d247adb08a2570041d6ecee8e0faa02141495 IGTPW_11944: 11944 IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2105-186d247adb08a2570041d6ecee8e0faa02141495: 186d247adb08a2570041d6ecee8e0faa02141495 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/index.html [-- Attachment #2: Type: text/html, Size: 10747 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (7 preceding siblings ...) 2024-10-21 15:22 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork @ 2024-10-21 15:25 ` Patchwork 2024-10-21 16:50 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork ` (2 subsequent siblings) 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 15:25 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13090 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) URL : https://patchwork.freedesktop.org/series/139808/ State : success == Summary == CI Bug Log - changes from IGT_8080 -> IGTPW_11944 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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_11944 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_11944/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_11944/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_11944/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_11944/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_11944/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_11944/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_11944/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_11944/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_11944/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-arls-2: [PASS][10] -> [DMESG-FAIL][11] ([i915#10262] / [i915#10341] / [i915#12133]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arls-2/igt@i915_selftest@live.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-arls-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_mocs: - bat-arls-2: [PASS][12] -> [DMESG-WARN][13] ([i915#10341] / [i915#12133]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arls-2/igt@i915_selftest@live@gt_mocs.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-arls-2/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@late_gt_pm: - bat-arls-2: [PASS][14] -> [DMESG-FAIL][15] ([i915#10262]) +28 other tests dmesg-fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4212] / [i915#5190]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][17] ([i915#4212] / [i915#4215] / [i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][18] ([i915#4212]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][19] +30 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#5354]) +5 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][22] ([i915#5274]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][23] ([i915#9197]) +16 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_psr@psr-primary-page-flip: - bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#1072] / [i915#9732]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#3555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#9197]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][27] ([i915#3708] / [i915#4077]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][28] ([i915#3291] / [i915#3708]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arlh-2: [ABORT][29] ([i915#12133]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [ABORT][31] ([i915#12061]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-arlh-2/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: [SKIP][33] ([i915#5190] / [i915#9792]) -> [SKIP][34] ([i915#4212] / [i915#5190] / [i915#9792]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-11: [SKIP][35] ([i915#5190]) -> [SKIP][36] ([i915#4212] / [i915#5190]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-14: [SKIP][37] ([i915#5190]) -> [SKIP][38] ([i915#4212] / [i915#5190]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-mtlp-8: [SKIP][39] ([i915#5190]) -> [SKIP][40] ([i915#4212] / [i915#5190]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-8: [SKIP][41] ([i915#5190]) -> [SKIP][42] ([i915#4212] / [i915#5190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][43] ([i915#4215] / [i915#5190]) -> [SKIP][44] ([i915#4212] / [i915#4215] / [i915#5190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-7: [SKIP][45] ([i915#4215]) -> [SKIP][46] ([i915#4212] / [i915#4215]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-11: [SKIP][47] ([i915#4215] / [i915#5190]) -> [SKIP][48] ([i915#4212] / [i915#4215] / [i915#5190]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-14: [SKIP][49] ([i915#4215] / [i915#5190]) -> [SKIP][50] ([i915#4212] / [i915#4215] / [i915#5190]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [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#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_11944 * Linux: CI_DRM_15559 -> CI_DRM_15573 CI-20190529: 20190529 CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15573: 186d247adb08a2570041d6ecee8e0faa02141495 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11944: 11944 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_11944/index.html [-- Attachment #2: Type: text/html, Size: 17827 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (8 preceding siblings ...) 2024-10-21 15:25 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-10-21 16:50 ` Patchwork 2024-10-21 19:34 ` ✗ Fi.CI.IGT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork 2024-10-21 21:57 ` ✗ CI.xeFULL: " Patchwork 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 16:50 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 92615 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11943_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11943_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11943_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_11943_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@wait-idle@pipe-d-dp-2: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vblank@wait-idle@pipe-d-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_vblank@wait-idle@pipe-d-dp-2.html * igt@xe_exec_threads@threads-mixed-userptr-invalidate: - shard-lnl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-8/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_module_load@many-reload.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@xe_module_load@many-reload.html - shard-lnl: [PASS][7] -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_module_load@many-reload.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-4/igt@xe_module_load@many-reload.html * igt@xe_pm_residency@cpg-basic (NEW): - shard-lnl: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-6/igt@xe_pm_residency@cpg-basic.html New tests --------- New tests have been introduced between XEIGT_8080_full and XEIGTPW_11943_full: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.00, 4.49] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 3 pass(s) - Exec time: [1.00, 1.01] s Known issues ------------ Here are the changes found in XEIGTPW_11943_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#623]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@crc: - shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#877]) +2 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_async_flips@crc.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_async_flips@crc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#1701]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1124]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +62 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/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][23] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/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-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1195]) +1 other test incomplete [24]: 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@pipe-a-hdmi-a-6.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1195] / [Intel XE#1727]) [26]: 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 [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-436/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-c-hdmi-a-6: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1195] / [Intel XE#3113]) [28]: 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-c-hdmi-a-6.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#314]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1152]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2423] / [i915#2575]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#306]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/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][36] ([Intel XE#307]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_edge_walk@128x128-left-edge: - shard-lnl: [PASS][38] -> [FAIL][39] ([Intel XE#2577]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_cursor_edge_walk@128x128-left-edge.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-left-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#2791] / [Intel XE#877]) [40]: 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 [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#776]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1138]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3007]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][47] -> [FAIL][48] ([Intel XE#301]) +2 other tests fail [47]: 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 [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#301]) +3 other tests fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#2882]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +3 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2293]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/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][56] ([Intel XE#455]) +11 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#651]) +19 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [FAIL][58] ([Intel XE#2333]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2890]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +20 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2313]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#605]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2231]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#616]) +1 other test fail [67]: 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 [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2763]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-bmg: NOTRUN -> [DMESG-WARN][70] ([Intel XE#3177]) +11 other tests dmesg-warn [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2763]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/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][72] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/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][73] -> [FAIL][74] ([Intel XE#718]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: [PASS][75] -> [SKIP][76] ([Intel XE#2446]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_pm_rpm@legacy-planes.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_pm_rpm@legacy-planes.html - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2446]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_pm_rpm@legacy-planes.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_pm_rpm@legacy-planes.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1489]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1489]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1122]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#2948]) +3 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_psr@pr-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2890]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2939]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_setmode@basic: - shard-bmg: [PASS][87] -> [SKIP][88] ([Intel XE#3007]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_setmode@basic.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_setmode@basic.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2168]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_vrr@cmrr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#2159]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#2443]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#756]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#1473]) +1 other test incomplete [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#288]) +14 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_exec_fault_mode@many-basic-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][100] -> [INCOMPLETE][101] ([Intel XE#2105]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2905]) +7 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2905]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt@xe_exec_threads@threads-hang-userptr: - shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#1130]) +16 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_exec_threads@threads-hang-userptr.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_exec_threads@threads-hang-userptr.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][106] -> [DMESG-WARN][107] ([Intel XE#2932]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-1/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2229]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/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][109] ([Intel XE#1999]) +2 other tests fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/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][110] ([Intel XE#2541]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@xe_oa@missing-sample-flags.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#979]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#1173]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/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][113] ([Intel XE#2284] / [Intel XE#366]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][114] -> [FAIL][115] ([Intel XE#958]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#944]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_query@multigpu-query-engines.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#1130]) +21 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_vm@large-split-binds-536870912: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1130]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_vm@large-split-binds-536870912.html #### Possible fixes #### * igt@fbdev@write: - shard-dg2-set2: [SKIP][120] ([Intel XE#2134]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@fbdev@write.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@fbdev@write.html - shard-bmg: [SKIP][122] ([Intel XE#2134]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@fbdev@write.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][124] ([Intel XE#829]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [SKIP][126] ([Intel XE#829]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-0.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-bmg: [SKIP][128] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][130] ([Intel XE#2436]) -> [PASS][131] +3 other tests pass [130]: 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 [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][132] ([Intel XE#3007]) -> [PASS][133] +5 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-bmg: [SKIP][134] ([Intel XE#2231]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@fbc: - shard-dg2-set2: [SKIP][136] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][137] +1 other test pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][138] ([Intel XE#301]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [ABORT][140] ([Intel XE#2625]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/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][142] -> [PASS][143] [142]: 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 [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [FAIL][144] ([Intel XE#301]) -> [PASS][145] +12 other tests pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][146] ([Intel XE#1204]) -> [PASS][147] [146]: 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 [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [FAIL][148] ([Intel XE#886]) -> [PASS][149] +4 other tests pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-6/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][150] ([Intel XE#783]) -> [PASS][151] +1 other test pass [150]: 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 [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][152] ([Intel XE#2890]) -> [PASS][153] +2 other tests pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: [SKIP][154] ([Intel XE#3187]) -> [PASS][155] +10 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][156] ([Intel XE#616]) -> [PASS][157] +1 other test pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_plane_cursor@viewport.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_plane_cursor@viewport.html * igt@kms_prop_blob@invalid-set-prop-any: - shard-dg2-set2: [SKIP][158] ([Intel XE#2423] / [i915#2575]) -> [PASS][159] +5 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_prop_blob@invalid-set-prop-any.html * igt@kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][160] ([Intel XE#3189]) -> [PASS][161] +9 other tests pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [FAIL][162] ([Intel XE#2948]) -> [PASS][163] +1 other test pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-8/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_psr@psr2-primary-blt@edp-1: - shard-lnl: [FAIL][164] ([Intel XE#1649]) -> [PASS][165] +1 other test pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-6/igt@kms_psr@psr2-primary-blt@edp-1.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-bmg: [INCOMPLETE][166] -> [PASS][167] +1 other test pass [166]: 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 [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [FAIL][168] ([Intel XE#1523]) -> [PASS][169] +1 other test pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-4/igt@kms_vblank@accuracy-idle.html * igt@xe_exec_compute_mode@many-userptr-invalidate: - shard-lnl: [DMESG-WARN][170] ([Intel XE#2687]) -> [PASS][171] +2 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-7/igt@xe_exec_compute_mode@many-userptr-invalidate.html * igt@xe_exec_compute_mode@non-blocking: - shard-bmg: [SKIP][172] ([Intel XE#1130]) -> [PASS][173] +16 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@xe_exec_compute_mode@non-blocking.html - shard-dg2-set2: [SKIP][174] ([Intel XE#1130]) -> [PASS][175] +8 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_compute_mode@non-blocking.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@xe_exec_compute_mode@non-blocking.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [FAIL][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@xe_exec_reset@parallel-close-fd.html - shard-dg2-set2: [FAIL][178] -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_module_load@reload-no-display: - shard-bmg: [FAIL][180] ([Intel XE#2136]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [FAIL][182] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][184] -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-1/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][186] ([Intel XE#2514]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@d3hot-mocs: - shard-lnl: [DMESG-WARN][188] ([Intel XE#3184]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_pm@d3hot-mocs.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-lnl-3/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [ABORT][190] ([Intel XE#1358]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@xe_pm@s4-basic.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [INCOMPLETE][192] ([Intel XE#1195]) -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_pm_residency@idle-residency-on-exec.html - shard-bmg: [INCOMPLETE][194] ([Intel XE#2655]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@xe_pm_residency@idle-residency-on-exec.html #### Warnings #### * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][196] ([Intel XE#2385]) -> [SKIP][197] ([Intel XE#3007]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: [SKIP][198] ([Intel XE#1124]) -> [SKIP][199] ([Intel XE#2231] / [Intel XE#2890]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][200] ([Intel XE#2231]) -> [SKIP][201] ([Intel XE#1124]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][202] ([Intel XE#2890]) -> [SKIP][203] ([Intel XE#1124]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][204] ([Intel XE#829]) -> [SKIP][205] ([Intel XE#1124]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-bmg: [SKIP][206] ([Intel XE#829]) -> [SKIP][207] ([Intel XE#1124]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][208] ([Intel XE#1124]) -> [SKIP][209] ([Intel XE#2890]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html - shard-bmg: [SKIP][210] ([Intel XE#1124]) -> [SKIP][211] ([Intel XE#2231]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][212] ([Intel XE#2423] / [i915#2575]) -> [SKIP][213] ([Intel XE#367]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][214] ([Intel XE#3189]) -> [SKIP][215] ([Intel XE#367]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html - shard-dg2-set2: [SKIP][216] ([Intel XE#3187]) -> [SKIP][217] ([Intel XE#367]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][218] -> [SKIP][219] ([Intel XE#2887]) [218]: 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 [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][220] ([Intel XE#2887]) -> [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html - shard-dg2-set2: [SKIP][222] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][223] ([Intel XE#2890]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][224] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][225] ([Intel XE#2887]) [224]: 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 [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html - shard-dg2-set2: [SKIP][226] ([Intel XE#2890]) -> [SKIP][227] ([Intel XE#455] / [Intel XE#787]) [226]: 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 [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/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][228] ([Intel XE#1195] / [Intel XE#1727]) -> [INCOMPLETE][229] ([Intel XE#1195]) [228]: 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 [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][230] ([Intel XE#2231]) -> [SKIP][231] ([Intel XE#2724]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cdclk@plane-scaling.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-bmg: [SKIP][232] ([Intel XE#2252]) -> [SKIP][233] ([Intel XE#3007]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_chamelium_audio@dp-audio.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][234] ([Intel XE#3007]) -> [SKIP][235] ([Intel XE#2252]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][236] ([Intel XE#3189]) -> [SKIP][237] ([Intel XE#2390]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: [SKIP][238] ([Intel XE#3187]) -> [SKIP][239] ([Intel XE#307]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][240] ([Intel XE#3007]) -> [SKIP][241] ([Intel XE#2341]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_content_protection@lic-type-1.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: [SKIP][242] ([Intel XE#2320]) -> [SKIP][243] ([Intel XE#3007]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg2-set2: [SKIP][244] ([Intel XE#455]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-32x32.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [SKIP][246] ([Intel XE#3189]) -> [DMESG-WARN][247] ([Intel XE#2791] / [Intel XE#877]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][248] ([Intel XE#323]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: [SKIP][250] ([Intel XE#2286]) -> [SKIP][251] ([Intel XE#3007]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][252] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][253] ([Intel XE#2244]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg2-set2: [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#455]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][256] ([Intel XE#455]) -> [SKIP][257] ([Intel XE#2890]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][258] ([Intel XE#2244]) -> [SKIP][259] ([Intel XE#2231] / [Intel XE#2890]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][260] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][261] ([Intel XE#1695]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][262] ([Intel XE#1695]) -> [SKIP][263] ([Intel XE#2231] / [Intel XE#2890]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: [SKIP][264] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][265] ([Intel XE#2231]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html - shard-dg2-set2: [SKIP][266] ([Intel XE#455]) -> [SKIP][267] ([Intel XE#2351] / [Intel XE#2890]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: [SKIP][268] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][269] ([Intel XE#2293] / [Intel XE#2380]) [268]: 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 [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg2-set2: [SKIP][270] ([Intel XE#2890]) -> [SKIP][271] ([Intel XE#455]) [270]: 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 [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][272] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][273] ([Intel XE#2311]) [272]: 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 [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html - shard-dg2-set2: [SKIP][274] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][275] ([Intel XE#651]) [274]: 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 [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/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][276] ([Intel XE#3187]) -> [SKIP][277] ([Intel XE#651]) +2 other tests skip [276]: 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 [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][278] ([Intel XE#2311]) -> [SKIP][279] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][280] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][281] ([Intel XE#2333]) +2 other tests fail [280]: 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 [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/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][282] ([Intel XE#3189]) -> [FAIL][283] ([Intel XE#2333]) +2 other tests fail [282]: 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 [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [FAIL][284] ([Intel XE#2333]) -> [SKIP][285] ([Intel XE#2231]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][286] ([Intel XE#651]) -> [SKIP][287] ([Intel XE#2890]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][288] ([Intel XE#3189]) -> [SKIP][289] ([Intel XE#2311]) +2 other tests skip [288]: 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 [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][290] ([Intel XE#2231]) -> [SKIP][291] ([Intel XE#2311]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html - shard-dg2-set2: [SKIP][292] ([Intel XE#2890]) -> [SKIP][293] ([Intel XE#651]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-bmg: [SKIP][294] ([Intel XE#2313]) -> [SKIP][295] ([Intel XE#2231]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][296] ([Intel XE#2313]) -> [SKIP][297] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html - shard-dg2-set2: [SKIP][298] ([Intel XE#653]) -> [SKIP][299] ([Intel XE#2890]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][300] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][301] ([Intel XE#2313]) +2 other tests skip [300]: 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 [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][302] ([Intel XE#2890]) -> [SKIP][303] ([Intel XE#653]) +1 other test skip [302]: 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 [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][304] ([Intel XE#3187]) -> [SKIP][305] ([Intel XE#653]) +1 other test skip [304]: 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 [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][306] ([Intel XE#2352]) -> [SKIP][307] ([Intel XE#2231] / [Intel XE#2890]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg2-set2: [SKIP][308] ([Intel XE#658]) -> [SKIP][309] ([Intel XE#2351] / [Intel XE#2890]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][310] ([Intel XE#783]) -> [SKIP][311] ([Intel XE#653]) [310]: 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 [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][312] ([Intel XE#3189]) -> [SKIP][313] ([Intel XE#2313]) +2 other tests skip [312]: 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 [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/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][314] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][315] ([Intel XE#653]) [314]: 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 [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-bmg: [SKIP][316] ([Intel XE#2231]) -> [SKIP][317] ([Intel XE#2313]) [316]: 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 [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][318] ([Intel XE#653]) -> [SKIP][319] ([Intel XE#2351] / [Intel XE#2890]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][320] ([Intel XE#2231]) -> [SKIP][321] ([Intel XE#2934]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][322] ([Intel XE#2890]) -> [SKIP][323] ([Intel XE#2925]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: [SKIP][324] ([Intel XE#2763]) -> [SKIP][325] ([Intel XE#3007]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - shard-dg2-set2: [SKIP][326] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-bmg: [SKIP][328] ([Intel XE#3007]) -> [DMESG-WARN][329] ([Intel XE#3177]) [328]: 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 [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][330] ([Intel XE#3189]) -> [DMESG-WARN][331] ([Intel XE#3177]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][332] ([Intel XE#3189]) -> [SKIP][333] ([Intel XE#2763]) [332]: 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 [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg2-set2: [SKIP][334] ([Intel XE#3187]) -> [SKIP][335] ([Intel XE#2763] / [Intel XE#455]) [334]: 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 [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/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][336] ([Intel XE#3007]) -> [DMESG-WARN][337] ([Intel XE#2566] / [Intel XE#3177]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-bmg: [DMESG-WARN][338] ([Intel XE#2566]) -> [DMESG-WARN][339] ([Intel XE#2566] / [Intel XE#3177]) +16 other tests dmesg-warn [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][340] ([Intel XE#1489]) -> [SKIP][341] ([Intel XE#2890]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][342] ([Intel XE#3187]) -> [SKIP][343] ([Intel XE#1489]) +2 other tests skip [342]: 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 [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/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][344] ([Intel XE#3189]) -> [SKIP][345] ([Intel XE#1489]) +2 other tests skip [344]: 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 [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][346] ([Intel XE#1489]) -> [SKIP][347] ([Intel XE#2231]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-cursor-render: - shard-bmg: [SKIP][348] ([Intel XE#2231]) -> [SKIP][349] ([Intel XE#2234] / [Intel XE#2850]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][350] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][351] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html - shard-dg2-set2: [SKIP][352] ([Intel XE#2890]) -> [SKIP][353] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-suspend: - shard-bmg: [SKIP][354] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][355] ([Intel XE#2231]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@fbc-psr2-suspend.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_psr@fbc-psr2-suspend.html - shard-dg2-set2: [SKIP][356] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][357] ([Intel XE#2890]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_psr@fbc-psr2-suspend.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][358] ([Intel XE#3187]) -> [SKIP][359] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][360] ([Intel XE#3189]) -> [SKIP][361] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2-set2: [SKIP][362] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][363] ([Intel XE#2850] / [Intel XE#929]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@psr-cursor-render.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-no-drrs: - shard-bmg: [SKIP][364] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][365] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@psr-no-drrs.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_psr@psr-no-drrs.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][366] ([Intel XE#1500]) -> [SKIP][367] ([Intel XE#362]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][368] ([Intel XE#2423] / [i915#2575]) -> [SKIP][369] ([Intel XE#455]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@kms_vrr@flip-dpms.html - shard-bmg: [SKIP][370] ([Intel XE#3007]) -> [SKIP][371] ([Intel XE#1499]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_vrr@flip-dpms.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][372] ([Intel XE#2168]) -> [SKIP][373] ([Intel XE#3007]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_vrr@lobf.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@kms_vrr@lobf.html - shard-dg2-set2: [SKIP][374] ([Intel XE#2168]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_vrr@lobf.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-bmg: [SKIP][376] ([Intel XE#3189]) -> [SKIP][377] ([Intel XE#1499]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vrr@max-min.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-5/igt@kms_vrr@max-min.html - shard-dg2-set2: [SKIP][378] ([Intel XE#3187]) -> [SKIP][379] ([Intel XE#455]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-433/igt@kms_vrr@max-min.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-bmg: [SKIP][380] ([Intel XE#2905]) -> [SKIP][381] ([Intel XE#1130]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_eudebug@basic-vm-access-userptr.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@xe_eudebug@basic-vm-access-userptr.html - shard-dg2-set2: [SKIP][382] ([Intel XE#2905]) -> [SKIP][383] ([Intel XE#1130]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_eudebug@basic-vm-access-userptr.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-bmg: [SKIP][384] ([Intel XE#1130]) -> [SKIP][385] ([Intel XE#2905]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html - shard-dg2-set2: [SKIP][386] ([Intel XE#1130]) -> [SKIP][387] ([Intel XE#2905]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-435/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][388] ([Intel XE#1473]) -> [FAIL][389] ([Intel XE#1000]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_fault_mode@twice-basic: - shard-dg2-set2: [SKIP][390] ([Intel XE#288]) -> [SKIP][391] ([Intel XE#1130]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_exec_fault_mode@twice-basic.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_exec_fault_mode@twice-basic.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][392] ([Intel XE#1130]) -> [SKIP][393] ([Intel XE#288]) +3 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][394] ([Intel XE#2961]) -> [TIMEOUT][395] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_live_ktest@xe_bo.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-466/igt@xe_live_ktest@xe_bo.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][396] ([Intel XE#1130]) -> [SKIP][397] ([Intel XE#2541]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][398] ([Intel XE#2248]) -> [SKIP][399] ([Intel XE#1130]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-8/igt@xe_oa@unprivileged-single-ctx-counters.html - shard-dg2-set2: [SKIP][400] ([Intel XE#2541]) -> [SKIP][401] ([Intel XE#1130]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@unprivileged-single-ctx-counters.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-dg2-464/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][402] ([Intel XE#2245]) -> [SKIP][403] ([Intel XE#2237] / [Intel XE#2245]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelp.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-7/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][404] ([Intel XE#1130]) -> [SKIP][405] ([Intel XE#2284]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [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#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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523 [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#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [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#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [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#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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [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#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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8080 -> IGTPW_11943 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2103-784111a40e40a37100e61736dd137c72cedbdb39 IGTPW_11943: 11943 IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2103-784111a40e40a37100e61736dd137c72cedbdb39: 784111a40e40a37100e61736dd137c72cedbdb39 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11943/index.html [-- Attachment #2: Type: text/html, Size: 116466 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (9 preceding siblings ...) 2024-10-21 16:50 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork @ 2024-10-21 19:34 ` Patchwork 2024-10-21 21:57 ` ✗ CI.xeFULL: " Patchwork 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 19:34 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100326 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15573_full -> IGTPW_11944_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11944_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11944_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_11944/index.html Participating hosts (7 -> 7) ------------------------------ Additional (1): shard-glk-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11944_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@noreloc-s3: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-4/igt@gem_softpin@noreloc-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-3/igt@gem_softpin@noreloc-s3.html * igt@i915_selftest@live@uncore: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-4/igt@i915_selftest@live@uncore.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@i915_selftest@live@uncore.html New tests --------- New tests have been introduced between CI_DRM_15573_full and IGTPW_11944_full: ### New IGT tests (1) ### * igt@prime_mmap: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_11944_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@drm_fdinfo@all-busy-check-all.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-1/igt@drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@drm_fdinfo@all-busy-check-all.html * igt@fbdev@unaligned-read: - shard-dg2: [PASS][9] -> [SKIP][10] ([i915#2582]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-10/igt@fbdev@unaligned-read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@fbdev@unaligned-read.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy.html - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-1/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gem_ctx_sseu@engines.html * igt@gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][21] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-13/igt@gem_eio@unwedge-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-17/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4473] / [i915#4771]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-solo: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842]) +6 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@concurrent: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +8 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +6 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@pi-ringfull@bcs0: - shard-tglu: NOTRUN -> [FAIL][39] ([i915#12296]) +5 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@gem_exec_schedule@pi-ringfull@bcs0.html * igt@gem_exec_schedule@pi-ringfull@vcs1: - shard-mtlp: NOTRUN -> [FAIL][40] ([i915#12296]) +6 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@gem_exec_schedule@pi-ringfull@vcs1.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#12296]) +4 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@gem_exec_schedule@pi-ringfull@vecs0.html - shard-dg1: NOTRUN -> [FAIL][42] ([i915#12296]) +5 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#12193]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4565]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@gem_mmap_gtt@basic-read-write-distinct.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_wc@close: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-1/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4885]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@gen9_exec_parse@batch-invalid-length.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][85] -> [ABORT][86] ([i915#9820]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#8399]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][88] ([i915#12455]) +1 other test incomplete [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#11681] / [i915#6621]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#11681] / [i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][91] -> [INCOMPLETE][92] ([i915#7790]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb2/igt@i915_pm_rps@reset.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#11681]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@i915_pm_rps@thresholds-park.html * igt@i915_power@sanity: - shard-mtlp: [PASS][96] -> [SKIP][97] ([i915#7984]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-6/igt@i915_power@sanity.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_selftest@live: - shard-dg2: NOTRUN -> [INCOMPLETE][98] ([i915#12133]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@i915_selftest@live.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][99] -> [DMESG-WARN][100] ([i915#4391] / [i915#4423]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-19/igt@i915_suspend@basic-s2idle-without-i915.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4212]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4212]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#8709]) +11 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [PASS][107] -> [FAIL][108] ([i915#11808] / [i915#5956]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5286]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][112] +10 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190] / [i915#9197]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/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][118] ([i915#4538]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6095]) +34 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#6095]) +156 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +144 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +49 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#12313]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/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][129] ([i915#6095]) +81 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7213] / [i915#9010]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#7213]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-1/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#7828]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3116] / [i915#3299]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8063] / [i915#9433]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#7116] / [i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#6944] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8814]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#11453] / [i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#11453] / [i915#3359]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11453] / [i915#3359]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11453] / [i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [DMESG-WARN][152] ([i915#4423]) +1 other test dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html * igt@kms_cursor_edge_walk@128x128-top-bottom: - shard-dg2: [PASS][153] -> [SKIP][154] ([i915#9197]) +39 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-11/igt@kms_cursor_edge_walk@128x128-top-bottom.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4213]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/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][158] ([i915#4103]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#9809]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8588]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#8588]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#8588]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#8588]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8588]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840] / [i915#9159]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#2065] / [i915#4854]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4854]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4854]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#4854]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4854]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#1839]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#1839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#658]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-7/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#658]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#658]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][180] +16 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9934]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-tglu: [PASS][183] -> [FAIL][184] ([i915#2122]) +5 other tests fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][185] ([i915#79]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][186] -> [FAIL][187] ([i915#2122]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg1: [PASS][188] -> [FAIL][189] ([i915#2122]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-13/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][190] ([i915#2122]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][191] ([i915#2122]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [PASS][192] -> [FAIL][193] ([i915#2122]) +3 other tests fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb5/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][198] ([i915#2587] / [i915#2672]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672] / [i915#3555]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#8813]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#5190]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][207] -> [SKIP][208] ([i915#5354]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#5354]) +30 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][210] -> [FAIL][211] ([i915#6880]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8708]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-snb: [PASS][213] -> [SKIP][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][215] +39 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#1825]) +21 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][217] +30 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][218] +47 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825]) +18 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +10 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4342] / [i915#5354]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +14 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +15 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3458]) +8 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3458]) +11 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@bad-vsync-start: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#3555]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-11/igt@kms_invalid_mode@bad-vsync-start.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_joiner@basic-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#12339]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#12339]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/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][234] +6 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format-source-clamping: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#8825]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_plane@pixel-format-source-clamping.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-dg2: [PASS][237] -> [SKIP][238] ([i915#7294]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-6/igt@kms_plane_alpha_blend@alpha-7efc.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#7294]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8806]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][241] ([i915#8292]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c: - shard-dg2: [PASS][242] -> [SKIP][243] ([i915#12247]) +11 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#8152] / [i915#9423]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#8152]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#6953]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#9423]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-5/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][248] ([i915#12247]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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-b: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#12247]) +9 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247]) +10 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#12247]) +12 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][254] -> [SKIP][255] ([i915#3555] / [i915#8152] / [i915#9423]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#3555]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#3555]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][258] ([i915#12247] / [i915#3555] / [i915#9423]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#8152]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#3555] / [i915#6953]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#12247]) +12 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#5354]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9812]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9685]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9292]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9293]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9685]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#3361]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@cursor: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#1849]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_pm_rpm@cursor.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9519]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#9808]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#12316]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#11520]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-4/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][282] ([i915#11520]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#11520]) +5 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9683]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#9688]) +14 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +11 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-suspend: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +14 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#9732]) +10 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#11131] / [i915#4235] / [i915#5190]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#11131] / [i915#4235]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/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][293] ([i915#5289]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#5289]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#3555]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][296] ([i915#12231]) +1 other test abort [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#8623]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@universal-plane-pageflip-windowed: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#9197]) +17 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_universal_plane@universal-plane-pageflip-windowed.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#11920]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#9906]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#9906]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#9906]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9906]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#8808] / [i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#2437]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#2437]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#2437]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#2437]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-mtlp: [PASS][310] -> [FAIL][311] ([i915#10538]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][312] -> [FAIL][313] ([i915#4349]) +4 other tests fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][314] ([i915#11823]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#8516]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#3708] / [i915#4077]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#3708]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-6/igt@prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][318] ([i915#3291] / [i915#3708]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3708] / [i915#4077]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3708]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-2/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-13/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3708]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#3708]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#9917]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-dg1: [DMESG-WARN][325] ([i915#4423]) -> [PASS][326] +2 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-17/igt@gem_ctx_isolation@preservation-s3@vcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][327] ([i915#11980]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-8/igt@gem_ctx_persistence@hostile.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-2/igt@gem_ctx_persistence@hostile.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][329] ([i915#11713]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-4/igt@gem_exec_big@single.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@gem_exec_big@single.html * igt@gem_mmap_offset@clear: - shard-mtlp: [ABORT][331] ([i915#10729]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-6/igt@gem_mmap_offset@clear.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][333] ([i915#10029] / [i915#10729]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@gem_softpin@allocator-evict@vcs1: - shard-dg1: [INCOMPLETE][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-15/igt@gem_softpin@allocator-evict@vcs1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-16/igt@gem_softpin@allocator-evict@vcs1.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][337] ([i915#9820]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][339] ([i915#3591]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@reset: - shard-dg2: [FAIL][341] ([i915#12459]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@i915_pm_rps@reset.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@i915_pm_rps@reset.html - shard-dg1: [FAIL][343] ([i915#12459]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-16/igt@i915_pm_rps@reset.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-12/igt@i915_pm_rps@reset.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-tglu: [FAIL][345] ([i915#10991]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][347] ([i915#11808]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-rkl: [ABORT][349] -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1: - shard-tglu: [INCOMPLETE][351] -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-6/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-8/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][353] ([i915#2346]) -> [PASS][354] +1 other test pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-dg2: [SKIP][355] ([i915#9197]) -> [PASS][356] +34 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][357] ([i915#1257]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_dp_aux_dev.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][359] ([i915#11961] / [i915#2122]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a2: - shard-rkl: [FAIL][361] ([i915#11961]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a2: - shard-rkl: [FAIL][363] ([i915#12457]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: [FAIL][365] ([i915#2122]) -> [PASS][366] +3 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-10/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2: [SKIP][367] ([i915#5354]) -> [PASS][368] +14 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_flip@flip-vs-suspend.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1: - shard-snb: [FAIL][369] ([i915#10826]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb1/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][371] -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_invalid_mode@zero-hdisplay: - shard-dg2: [SKIP][373] ([i915#3555]) -> [PASS][374] +3 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_invalid_mode@zero-hdisplay.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@kms_invalid_mode@zero-hdisplay.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: [SKIP][375] ([i915#8825]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-dg2: [SKIP][377] ([i915#7294]) -> [PASS][378] +2 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-min.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-5/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [SKIP][379] ([i915#8152] / [i915#9423]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c: - shard-dg2: [SKIP][381] ([i915#12247]) -> [PASS][382] +17 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d: - shard-dg2: [SKIP][383] ([i915#8152]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [SKIP][385] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-dg2: [SKIP][387] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [SKIP][389] ([i915#12247] / [i915#8152]) -> [PASS][390] +3 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a: - shard-dg1: [DMESG-WARN][391] ([i915#1982] / [i915#4423]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [SKIP][393] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][395] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [SKIP][397] ([i915#9293]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][399] ([i915#9519]) -> [PASS][400] +2 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][401] ([i915#9519]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [SKIP][403] ([i915#11521]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-mtlp: [FAIL][405] ([i915#12380]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][407] ([i915#3555] / [i915#9906]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-5/igt@kms_vrr@negative-basic.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [FAIL][409] ([i915#11943]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [FAIL][411] ([i915#11943]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [FAIL][413] ([i915#11943]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][415] ([i915#12031]) -> [FAIL][416] ([i915#12027] / [i915#12031]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][417] ([i915#10887] / [i915#9820]) -> [ABORT][418] ([i915#9820]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][419] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][420] ([i915#10131] / [i915#9820]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][421] -> [SKIP][422] ([i915#9197]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-5/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2: [SKIP][423] ([i915#9197]) -> [SKIP][424] +6 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: [SKIP][425] ([i915#5190] / [i915#9197]) -> [SKIP][426] ([i915#4538] / [i915#5190]) +7 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2: [INCOMPLETE][427] ([i915#2295]) -> [SKIP][428] ([i915#5190] / [i915#9197]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: [SKIP][429] ([i915#4538] / [i915#5190]) -> [SKIP][430] ([i915#5190] / [i915#9197]) +7 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][431] ([i915#9197]) -> [SKIP][432] ([i915#10307] / [i915#6095]) +4 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][433] ([i915#10307] / [i915#6095]) -> [SKIP][434] ([i915#9197]) +8 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#12313]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][437] ([i915#12313]) -> [SKIP][438] ([i915#9197]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: [SKIP][439] ([i915#11616] / [i915#7213]) -> [SKIP][440] ([i915#9197]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][441] ([i915#3555]) -> [SKIP][442] ([i915#5354]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-8/igt@kms_color@deep-color.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [SKIP][443] ([i915#7118] / [i915#9424]) -> [SKIP][444] ([i915#9197]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: [SKIP][445] ([i915#3299]) -> [SKIP][446] ([i915#9197]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15573/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: [SKIP][447] ([i915#3555]) -> [SKIP][448] ([i915#9197]) +3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11944/index.html [-- Attachment #2: Type: text/html, Size: 108782 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban ` (10 preceding siblings ...) 2024-10-21 19:34 ` ✗ Fi.CI.IGT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork @ 2024-10-21 21:57 ` Patchwork 11 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-10-21 21:57 UTC (permalink / raw) To: Sk Anirban; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89451 bytes --] == Series Details == Series: tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) URL : https://patchwork.freedesktop.org/series/139808/ State : failure == Summary == CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11944_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11944_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11944_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_11944_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@xe_pm_residency@cpg-basic (NEW): - shard-lnl: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-8/igt@xe_pm_residency@cpg-basic.html New tests --------- New tests have been introduced between XEIGT_8080_full and XEIGTPW_11944_full: ### New IGT tests (2) ### * igt@xe_pm_residency@cpg-basic: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@xe_pm_residency@cpg-gt-toggle: - Statuses : 3 pass(s) - Exec time: [1.00] s Known issues ------------ Here are the changes found in XEIGTPW_11944_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2-set2: [PASS][4] -> [SKIP][5] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#623]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#873]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2-set2: [PASS][10] -> [SKIP][11] ([Intel XE#2890]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#877]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-0.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +62 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2907]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/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][21] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/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: - shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1195] / [Intel XE#1727]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1195] / [Intel XE#2692]) [24]: 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 [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/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-c-dp-4: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1195]) [26]: 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-c-dp-4.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#1195] / [Intel XE#3113]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#314]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1152]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#306]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#307]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-64x64: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#3007]) +10 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_crc@cursor-random-64x64.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x64.html * igt@kms_cursor_edge_walk@128x128-top-edge: - shard-lnl: [PASS][39] -> [FAIL][40] ([Intel XE#2577]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-top-edge.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-top-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2791] / [Intel XE#877]) [41]: 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 [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#877]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_fbcon_fbt@fbc: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#3173]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_fbcon_fbt@fbc.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#776]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1138]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#301]) +6 other tests fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#301]) +2 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +2 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#455]) +15 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/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][56] ([Intel XE#651]) +18 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/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][57] ([Intel XE#2333]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2311]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2890]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2231] / [Intel XE#2890]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +21 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#605]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][64] -> [FAIL][65] ([Intel XE#361]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2763]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-bmg: NOTRUN -> [DMESG-WARN][68] ([Intel XE#3177]) +7 other tests dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2763]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#2423] / [i915#2575]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#718]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1489]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1489]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1122]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#2948]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2939]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2870]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2168]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#2443]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#756]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#2667]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-5/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2905]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#1473]) +1 other test incomplete [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2322]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_compute_mode@twice-bindexecqueue-rebind: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#1130]) +25 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_exec_compute_mode@twice-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1130]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html * igt@xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#288]) +13 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@xe_exec_fault_mode@many-basic-prefetch.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1130]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2905]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt@xe_exec_threads@threads-hang-shared-vm-rebind: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#1130]) +21 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2229]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/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][102] ([Intel XE#1999]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2541]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@xe_oa@missing-sample-flags.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2839] / [Intel XE#977]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][105] ([Intel XE#1173]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2284] / [Intel XE#366]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm_residency: - shard-bmg: NOTRUN -> [INCOMPLETE][107] ([Intel XE#2594]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@xe_pm_residency.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@xe_query@multigpu-query-topology.html #### Possible fixes #### * igt@fbdev@write: - shard-dg2-set2: [SKIP][109] ([Intel XE#2134]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@fbdev@write.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@fbdev@write.html - shard-bmg: [SKIP][111] ([Intel XE#2134]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@fbdev@write.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][113] ([Intel XE#829]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-dg2-set2: [SKIP][115] ([Intel XE#829]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-0.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-bmg: [SKIP][117] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [FAIL][119] ([Intel XE#2436]) -> [PASS][120] +3 other tests pass [119]: 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 [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][121] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][122] [121]: 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 [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][123] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][124] [123]: 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@pipe-c-hdmi-a-6.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][125] ([Intel XE#3007]) -> [PASS][126] +5 other tests pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/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][127] ([Intel XE#1475]) -> [PASS][128] [127]: 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 [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][129] ([Intel XE#301]) -> [PASS][130] +2 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - shard-bmg: [FAIL][131] ([Intel XE#301]) -> [PASS][132] +4 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [FAIL][133] ([Intel XE#886]) -> [PASS][134] +6 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-5/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][135] ([Intel XE#783]) -> [PASS][136] [135]: 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 [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][137] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][139] ([Intel XE#2890]) -> [PASS][140] +2 other tests pass [139]: 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 [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: [SKIP][141] ([Intel XE#3187]) -> [PASS][142] +9 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_lease@lease-invalid-crtc.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][143] ([Intel XE#616]) -> [PASS][144] +1 other test pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_plane_cursor@viewport.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][145] ([Intel XE#361]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_prop_blob@invalid-set-prop-any: - shard-dg2-set2: [SKIP][147] ([Intel XE#2423] / [i915#2575]) -> [PASS][148] +3 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_prop_blob@invalid-set-prop-any.html * igt@kms_properties@connector-properties-legacy: - shard-bmg: [SKIP][149] ([Intel XE#3189]) -> [PASS][150] +9 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [FAIL][151] ([Intel XE#2948]) -> [PASS][152] +3 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-5/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_psr@psr2-primary-blt@edp-1: - shard-lnl: [FAIL][153] ([Intel XE#1649]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-7/igt@kms_psr@psr2-primary-blt@edp-1.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-bmg: [INCOMPLETE][155] -> [PASS][156] +1 other test pass [155]: 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 [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [FAIL][157] ([Intel XE#1523]) -> [PASS][158] +1 other test pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-7/igt@kms_vblank@accuracy-idle.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][159] ([Intel XE#2443]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-5/igt@kms_vrr@max-min.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-8/igt@kms_vrr@max-min.html * igt@xe_drm_fdinfo@utilization-others-idle: - shard-dg2-set2: [SKIP][161] ([Intel XE#1130]) -> [PASS][162] +8 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@xe_drm_fdinfo@utilization-others-idle.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [TIMEOUT][163] ([Intel XE#1473]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_compute_mode@many-userptr-invalidate: - shard-lnl: [DMESG-WARN][165] ([Intel XE#2687]) -> [PASS][166] +2 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-6/igt@xe_exec_compute_mode@many-userptr-invalidate.html * igt@xe_exec_compute_mode@non-blocking: - shard-bmg: [SKIP][167] ([Intel XE#1130]) -> [PASS][168] +14 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@xe_exec_compute_mode@non-blocking.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [FAIL][169] -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@xe_exec_reset@parallel-close-fd.html - shard-dg2-set2: [FAIL][171] -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][173] -> [PASS][174] +1 other test pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-6/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][175] ([Intel XE#2514]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@d3hot-mocs: - shard-lnl: [DMESG-WARN][177] ([Intel XE#3184]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_pm@d3hot-mocs.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-lnl-1/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [ABORT][179] -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s3-mocs.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_pm@s3-mocs.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1195]) -> [PASS][182] +1 other test pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec.html - shard-bmg: [INCOMPLETE][183] ([Intel XE#2655]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@xe_pm_residency@idle-residency-on-exec.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: [SKIP][185] ([Intel XE#455]) -> [SKIP][186] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-bmg: [SKIP][187] ([Intel XE#2370]) -> [SKIP][188] ([Intel XE#3007]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][189] ([Intel XE#316]) -> [SKIP][190] ([Intel XE#2351] / [Intel XE#2890]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-bmg: [SKIP][191] ([Intel XE#2327]) -> [SKIP][192] ([Intel XE#2231] / [Intel XE#2890]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][193] ([Intel XE#2231]) -> [SKIP][194] ([Intel XE#1124]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][195] ([Intel XE#1124]) -> [SKIP][196] ([Intel XE#2231]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][197] ([Intel XE#1124]) -> [SKIP][198] ([Intel XE#2890]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][199] ([Intel XE#829]) -> [SKIP][200] ([Intel XE#1124]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-bmg: [SKIP][201] ([Intel XE#829]) -> [SKIP][202] ([Intel XE#1124]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-bmg: [SKIP][203] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][204] ([Intel XE#1124]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html - shard-dg2-set2: [SKIP][205] ([Intel XE#2890]) -> [SKIP][206] ([Intel XE#1124]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][207] ([Intel XE#1124]) -> [SKIP][208] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][209] ([Intel XE#367]) -> [SKIP][210] ([Intel XE#2423] / [i915#2575]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][211] ([Intel XE#2423] / [i915#2575]) -> [SKIP][212] ([Intel XE#367]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][213] ([Intel XE#3189]) -> [SKIP][214] ([Intel XE#367]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html - shard-dg2-set2: [SKIP][215] ([Intel XE#3187]) -> [SKIP][216] ([Intel XE#367]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: [SKIP][217] -> [SKIP][218] ([Intel XE#2887]) [217]: 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 [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][219] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][220] ([Intel XE#2887]) [219]: 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 [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html - shard-dg2-set2: [SKIP][221] ([Intel XE#2890]) -> [SKIP][222] ([Intel XE#455] / [Intel XE#787]) [221]: 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 [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: [SKIP][223] ([Intel XE#2887]) -> [SKIP][224] ([Intel XE#2231]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][225] ([Intel XE#455] / [Intel XE#787]) -> [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_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][227] ([Intel XE#2231]) -> [SKIP][228] ([Intel XE#2724]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cdclk@plane-scaling.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][229] ([Intel XE#2252]) -> [SKIP][230] ([Intel XE#3007]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg2-set2: [SKIP][231] ([Intel XE#373]) -> [SKIP][232] ([Intel XE#2423] / [i915#2575]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: [SKIP][233] ([Intel XE#3007]) -> [SKIP][234] ([Intel XE#2252]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-dg2-set2: [SKIP][235] ([Intel XE#2423] / [i915#2575]) -> [SKIP][236] ([Intel XE#373]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][237] ([Intel XE#3189]) -> [SKIP][238] ([Intel XE#2390]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: [SKIP][239] ([Intel XE#3187]) -> [SKIP][240] ([Intel XE#307]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][241] ([Intel XE#3007]) -> [SKIP][242] ([Intel XE#2341]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_content_protection@lic-type-1.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][243] ([Intel XE#2320]) -> [SKIP][244] ([Intel XE#3007]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [SKIP][245] ([Intel XE#3189]) -> [DMESG-WARN][246] ([Intel XE#2791] / [Intel XE#877]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][247] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][248] ([Intel XE#2244]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg2-set2: [SKIP][249] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][250] ([Intel XE#455]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][251] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][252] ([Intel XE#1695]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [ABORT][253] ([Intel XE#2625]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: [SKIP][255] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][256] ([Intel XE#2311]) [255]: 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 [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html - shard-dg2-set2: [SKIP][257] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][258] ([Intel XE#651]) [257]: 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 [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/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][259] ([Intel XE#3187]) -> [SKIP][260] ([Intel XE#651]) +2 other tests skip [259]: 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 [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][261] ([Intel XE#651]) -> [SKIP][262] ([Intel XE#2890]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][263] ([Intel XE#2311]) -> [SKIP][264] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][265] ([Intel XE#651]) -> [SKIP][266] ([Intel XE#2351] / [Intel XE#2890]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][267] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][268] ([Intel XE#2333]) +2 other tests fail [267]: 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 [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/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][269] ([Intel XE#3189]) -> [FAIL][270] ([Intel XE#2333]) +1 other test fail [269]: 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 [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][271] ([Intel XE#2333]) -> [SKIP][272] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][273] ([Intel XE#2311]) -> [SKIP][274] ([Intel XE#2231]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][275] ([Intel XE#3189]) -> [SKIP][276] ([Intel XE#2311]) +2 other tests skip [275]: 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 [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-bmg: [SKIP][277] ([Intel XE#2231]) -> [SKIP][278] ([Intel XE#2311]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html - shard-dg2-set2: [SKIP][279] ([Intel XE#2890]) -> [SKIP][280] ([Intel XE#651]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][281] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][282] ([Intel XE#653]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][283] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][284] ([Intel XE#2313]) +2 other tests skip [283]: 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 [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][285] ([Intel XE#2890]) -> [SKIP][286] ([Intel XE#653]) +1 other test skip [285]: 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 [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-436/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][287] ([Intel XE#2313]) -> [SKIP][288] ([Intel XE#2231]) +2 other tests skip [287]: 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 [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/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][289] ([Intel XE#3187]) -> [SKIP][290] ([Intel XE#653]) +1 other test skip [289]: 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 [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/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][291] ([Intel XE#783]) -> [SKIP][292] ([Intel XE#653]) [291]: 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 [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][293] ([Intel XE#2313]) -> [SKIP][294] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][295] ([Intel XE#653]) -> [SKIP][296] ([Intel XE#2351] / [Intel XE#2890]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][297] ([Intel XE#3189]) -> [SKIP][298] ([Intel XE#2313]) +2 other tests skip [297]: 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 [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][299] ([Intel XE#2231]) -> [SKIP][300] ([Intel XE#2313]) [299]: 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 [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][301] ([Intel XE#653]) -> [SKIP][302] ([Intel XE#2890]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][303] ([Intel XE#346]) -> [SKIP][304] ([Intel XE#2231]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html - shard-dg2-set2: [SKIP][305] ([Intel XE#346]) -> [SKIP][306] ([Intel XE#2890]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][307] ([Intel XE#2231]) -> [SKIP][308] ([Intel XE#2934]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: [SKIP][309] ([Intel XE#2890]) -> [SKIP][310] ([Intel XE#2925]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][311] ([Intel XE#3189]) -> [DMESG-WARN][312] ([Intel XE#3177]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][313] ([Intel XE#3189]) -> [SKIP][314] ([Intel XE#2763]) [313]: 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 [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/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][315] ([Intel XE#3007]) -> [DMESG-WARN][316] ([Intel XE#2566] / [Intel XE#3177]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-bmg: [DMESG-WARN][317] ([Intel XE#2566]) -> [SKIP][318] ([Intel XE#3007]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-bmg: [DMESG-WARN][319] ([Intel XE#2566]) -> [DMESG-WARN][320] ([Intel XE#2566] / [Intel XE#3177]) +14 other tests dmesg-warn [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][321] ([Intel XE#3187]) -> [SKIP][322] ([Intel XE#1489]) +2 other tests skip [321]: 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 [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][323] ([Intel XE#1489]) -> [SKIP][324] ([Intel XE#2231]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][325] ([Intel XE#1489]) -> [SKIP][326] ([Intel XE#2890]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][327] ([Intel XE#3189]) -> [SKIP][328] ([Intel XE#1489]) +2 other tests skip [327]: 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 [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-render: - shard-bmg: [SKIP][329] ([Intel XE#2231]) -> [SKIP][330] ([Intel XE#2234] / [Intel XE#2850]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-render.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-render.html - shard-dg2-set2: [SKIP][331] ([Intel XE#2890]) -> [SKIP][332] ([Intel XE#2850] / [Intel XE#929]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-render.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-bmg: [SKIP][333] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][334] ([Intel XE#2231]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_psr@fbc-psr-primary-page-flip.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-dg2-set2: [SKIP][335] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][336] ([Intel XE#2890]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_psr@fbc-psr2-no-drrs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_psr@fbc-psr2-no-drrs.html - shard-bmg: [SKIP][337] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][338] ([Intel XE#2231] / [Intel XE#2890]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_psr@fbc-psr2-no-drrs.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][339] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][340] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][341] ([Intel XE#3187]) -> [SKIP][342] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][343] ([Intel XE#3189]) -> [SKIP][344] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-4/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2-set2: [SKIP][345] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][346] ([Intel XE#2850] / [Intel XE#929]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@psr-cursor-render.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@kms_psr@psr-cursor-render.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#455]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@kms_vrr@flip-dpms.html - shard-bmg: [SKIP][349] ([Intel XE#3007]) -> [SKIP][350] ([Intel XE#1499]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_vrr@flip-dpms.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-bmg: [SKIP][351] ([Intel XE#3189]) -> [SKIP][352] ([Intel XE#1499]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_vrr@max-min.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@kms_vrr@max-min.html - shard-dg2-set2: [SKIP][353] ([Intel XE#3187]) -> [SKIP][354] ([Intel XE#455]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][355] ([Intel XE#1499]) -> [SKIP][356] ([Intel XE#3007]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][357] ([Intel XE#1126]) -> [SKIP][358] ([Intel XE#1130]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: [SKIP][359] ([Intel XE#2905]) -> [SKIP][360] ([Intel XE#1130]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html - shard-dg2-set2: [SKIP][361] ([Intel XE#2905]) -> [SKIP][362] ([Intel XE#1130]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_eudebug_online@breakpoint-not-in-debug-mode: - shard-bmg: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#2905]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html - shard-dg2-set2: [SKIP][365] ([Intel XE#1130]) -> [SKIP][366] ([Intel XE#2905]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-464/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-bmg: [SKIP][367] ([Intel XE#2322]) -> [SKIP][368] ([Intel XE#1130]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-bmg: [SKIP][369] ([Intel XE#1130]) -> [SKIP][370] ([Intel XE#2322]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_basic@multigpu-once-userptr.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-1/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault: - shard-dg2-set2: [SKIP][371] ([Intel XE#288]) -> [SKIP][372] ([Intel XE#1130]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][373] ([Intel XE#1130]) -> [SKIP][374] ([Intel XE#288]) +3 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][375] ([Intel XE#2360]) -> [SKIP][376] ([Intel XE#1130]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][377] ([Intel XE#2961]) -> [INCOMPLETE][378] ([Intel XE#1195]) +1 other test incomplete [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@xe_live_ktest@xe_bo.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-463/igt@xe_live_ktest@xe_bo.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][379] ([Intel XE#1130]) -> [SKIP][380] ([Intel XE#2541]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][381] ([Intel XE#2245]) -> [SKIP][382] ([Intel XE#2237] / [Intel XE#2245]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_pat@pat-index-xelp.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][383] ([Intel XE#1130]) -> [SKIP][384] ([Intel XE#2284]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: [SKIP][385] ([Intel XE#1130]) -> [SKIP][386] ([Intel XE#2284] / [Intel XE#366]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/shard-dg2-466/igt@xe_pm@d3cold-multiple-execs.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [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#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#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [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#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [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#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [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#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870 [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#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#3173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3173 [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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#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#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_11944 * Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2105-186d247adb08a2570041d6ecee8e0faa02141495 IGTPW_11944: 11944 IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667 xe-2105-186d247adb08a2570041d6ecee8e0faa02141495: 186d247adb08a2570041d6ecee8e0faa02141495 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11944/index.html [-- Attachment #2: Type: text/html, Size: 113274 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states
@ 2024-10-22 10:49 sk.anirban
0 siblings, 0 replies; 15+ messages in thread
From: sk.anirban @ 2024-10-22 10:49 UTC (permalink / raw)
To: igt-dev; +Cc: anshuman.gupta, sk.anirban, riana.tauro, badal.nilawar
From: Sk Anirban <sk.anirban@intel.com>
Implement test cpg-basic to validate coarse power gating status
after S3 cycle.
Add test cpg-gt-toggle to check if GT coarse power gating is up when
forcewake is acquired and down when released.
v2: Address cosmetic review comments (Riana)
Fix suspend state (Riana)
Add exit handler for test cpg-gt-toggle (Riana)
v3: Address cosmetic review comments (Riana)
Fix commit message & test name (Konieczny)
v4: Address cosmetic review comments (Riana)
Sk Anirban (2):
tests/intel/xe_pm_residency: Add GT coarse power gating validation
HAX: Add Coarse power gating tests to fast feedback list
tests/intel-ci/xe-fast-feedback.testlist | 2 +
tests/intel/xe_pm_residency.c | 90 ++++++++++++++++++++++++
2 files changed, 92 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states
@ 2024-10-21 7:19 sk.anirban
0 siblings, 0 replies; 15+ messages in thread
From: sk.anirban @ 2024-10-21 7:19 UTC (permalink / raw)
To: igt-dev, anshuman.gupta; +Cc: sk.anirban, riana.tauro
From: Sk Anirban <sk.anirban@intel.com>
Implement test cpg-basic to validate coarse power gating status
after S3 cycle.
Add test cpg-gt-toggle to check if GT coarse power gating is up when
forcewake is acquired and down when released.
v2: Address cosmetic review comments (Riana)
Fix suspend state (Riana)
Add exit handler for test cpg-gt-toggle (Riana)
v3: Address cosmetic review comments (Riana)
Fix commit message & test name (Konieczny)
Sk Anirban (2):
tests/intel/xe_pm_residency: Add GT coarse power gating validation
HAX: Add Coarse power gating tests to fast feedback list
tests/intel-ci/xe-fast-feedback.testlist | 2 +
tests/intel/xe_pm_residency.c | 92 ++++++++++++++++++++++++
2 files changed, 94 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 15+ messages in threadend of thread, other threads:[~2024-10-22 10:55 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-21 9:00 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 1/2] tests/intel/xe_pm_residency: Add GT coarse power gating validation Sk Anirban 2024-10-21 9:00 ` [i-g-t, v3, 2/2] HAX: Add Coarse power gating tests to fast feedback list Sk Anirban 2024-10-21 10:12 ` ✗ Fi.CI.BAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork 2024-10-21 10:16 ` ✗ CI.xeBAT: " Patchwork 2024-10-21 12:25 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork 2024-10-21 12:30 ` ✗ Fi.CI.BAT: " Patchwork 2024-10-21 13:26 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev5) Patchwork 2024-10-21 15:22 ` ✗ CI.xeBAT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork 2024-10-21 15:25 ` ✓ Fi.CI.BAT: success " Patchwork 2024-10-21 16:50 ` ✗ CI.xeFULL: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev6) Patchwork 2024-10-21 19:34 ` ✗ Fi.CI.IGT: failure for tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states (rev7) Patchwork 2024-10-21 21:57 ` ✗ CI.xeFULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-10-22 10:49 [i-g-t, v3, 0/2] tests/xe: Add tests to validate GT coarse power gating status and toggle coarse power gating states sk.anirban 2024-10-21 7:19 sk.anirban
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox