* [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read
@ 2026-01-23 18:35 Karthik Poosa
2026-01-23 19:09 ` ✓ Xe.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Karthik Poosa @ 2026-01-23 18:35 UTC (permalink / raw)
To: igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, raag.jadav,
mallesh.koujalagi, Karthik Poosa
Improve hwmon-read test to check if current temperature
is above critical temperature limit in hwmon-read test.
This will help identify any thermal issues with the
setups during test runs.
v2:
- Address review comments. (Mallesh)
- Call check_temp_is_valid() only for temperature hwmon entries.
Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
---
tests/intel/intel_hwmon.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/tests/intel/intel_hwmon.c b/tests/intel/intel_hwmon.c
index 103ae69cd..9deb48a00 100644
--- a/tests/intel/intel_hwmon.c
+++ b/tests/intel/intel_hwmon.c
@@ -26,6 +26,28 @@
IGT_TEST_DESCRIPTION("Tests for intel hwmon");
+static void check_if_temp_valid(int hwm, char *sysfs_name)
+{
+ char str[32] = {0};
+ uint32_t cur_temp = 0;
+ uint8_t ch = 0;
+ s32 limit = 0;
+
+ /* Get the channel number and sysfs entry suffix. */
+ igt_assert(sscanf(sysfs_name, "temp%hhu_%s", &ch, str) == 2);
+
+ /* If entry is tempX_input, check if it exceeds tempX_crit. */
+ if (!strncmp("input", str, 5)) {
+ sprintf(str, "temp%hhu_crit", ch);
+ if (!faccessat(hwm, str, R_OK, 0)) {
+ igt_assert_lt(0, igt_sysfs_scanf(hwm, sysfs_name, "%d", &cur_temp));
+ igt_assert_lt(0, igt_sysfs_scanf(hwm, str, "%d", &limit));
+ igt_debug("current temp = %d limit = %d\n", cur_temp, limit);
+ igt_assert_f(cur_temp <= limit, "current temperature exceeds limit!\n");
+ }
+ }
+}
+
static void hwmon_read(int hwm)
{
struct dirent *de;
@@ -43,6 +65,9 @@ static void hwmon_read(int hwm)
igt_assert(igt_sysfs_scanf(hwm, de->d_name, "%127s", val) == 1);
igt_debug("'%s': %s\n", de->d_name, val);
+ if (!strncmp(de->d_name, "temp", 4))
+ check_if_temp_valid(hwm, de->d_name);
+
}
closedir(dir);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa @ 2026-01-23 19:09 ` Patchwork 2026-01-23 19:21 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-01-23 19:09 UTC (permalink / raw) To: Karthik Poosa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4499 bytes --] == Series Details == Series: tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) URL : https://patchwork.freedesktop.org/series/158829/ State : success == Summary == CI Bug Log - changes from XEIGT_8716_BAT -> XEIGTPW_14414_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (11 -> 12) ------------------------------ Additional (1): bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_14414_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#623]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#455]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@kms_psr@psr-cursor-plane-move.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#288]) +32 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_huc_copy@huc_copy: - bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#255]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#2229]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pat@pat-index-xe2: - bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#977]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#2838] / [Intel XE#979]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-dg2-oem2: NOTRUN -> [SKIP][10] ([Intel XE#979]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#3342]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/bat-dg2-oem2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8716 -> IGTPW_14414 IGTPW_14414: 14414 IGT_8716: 8716 xe-4442-ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145: ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/index.html [-- Attachment #2: Type: text/html, Size: 5359 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa 2026-01-23 19:09 ` ✓ Xe.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) Patchwork @ 2026-01-23 19:21 ` Patchwork 2026-01-24 0:08 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-01-23 19:21 UTC (permalink / raw) To: Karthik Poosa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3453 bytes --] == Series Details == Series: tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) URL : https://patchwork.freedesktop.org/series/158829/ State : success == Summary == CI Bug Log - changes from IGT_8716 -> IGTPW_14414 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14414 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@reset: - bat-twl-2: [PASS][1] -> [ABORT][2] ([i915#14365]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-twl-2/igt@i915_selftest@live@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-twl-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +77 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-dg2-14/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-dg2-14/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_pm_rpm@basic-pci-d3-state: - bat-apl-1: [PASS][9] -> [DMESG-WARN][10] ([i915#13735] / [i915#180]) +49 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/bat-arls-5/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#14365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14365 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8716 -> IGTPW_14414 CI-20190529: 20190529 CI_DRM_17877: ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14414: 14414 IGT_8716: 8716 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/index.html [-- Attachment #2: Type: text/html, Size: 4387 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa 2026-01-23 19:09 ` ✓ Xe.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) Patchwork 2026-01-23 19:21 ` ✓ i915.CI.BAT: " Patchwork @ 2026-01-24 0:08 ` Patchwork 2026-01-24 3:41 ` ✗ Xe.CI.Full: " Patchwork 2026-01-28 10:37 ` [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Mallesh, Koujalagi 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-01-24 0:08 UTC (permalink / raw) To: Karthik Poosa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 149995 bytes --] == Series Details == Series: tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) URL : https://patchwork.freedesktop.org/series/158829/ State : failure == Summary == CI Bug Log - changes from IGT_8716_full -> IGTPW_14414_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14414_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14414_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_14414/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14414_full: ### IGT changes ### #### Possible regressions #### * igt@perf@invalid-oa-metric-set-id: - shard-mtlp: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-mtlp-8/igt@perf@invalid-oa-metric-set-id.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@perf@invalid-oa-metric-set-id.html Known issues ------------ Here are the changes found in IGTPW_14414_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-glk: NOTRUN -> [DMESG-WARN][5] ([i915#15095]) +1 other test dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk5/igt@drm_buddy@drm_buddy.html - shard-dg2: NOTRUN -> [DMESG-WARN][6] ([i915#15095]) +1 other test dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@drm_buddy@drm_buddy.html * igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance: - shard-dg1: NOTRUN -> [DMESG-WARN][7] ([i915#15095]) +1 other test dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html - shard-snb: NOTRUN -> [DMESG-WARN][8] ([i915#15095]) +1 other test dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb1/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html - shard-tglu: NOTRUN -> [DMESG-WARN][9] ([i915#15095]) +1 other test dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html - shard-mtlp: NOTRUN -> [DMESG-WARN][10] ([i915#15095]) +1 other test dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#12392] / [i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][24] ([i915#13390]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@gem_exec_balancer@bonded-sync.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#6334]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@gem_exec_fence@concurrent.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-19/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@flink-race: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@bad-object: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@gem_mmap_wc@copy.html * igt@gem_pread@display: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-1/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][63] ([i915#14702] / [i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk8/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb1/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][68] -> [SKIP][69] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#13717]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#14544] / [i915#8411]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#8411]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#13809]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk1/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-5/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][83] ([i915#3323]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#14073]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#14073]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#14073]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_module_load@fault-injection: - shard-rkl: NOTRUN -> [ABORT][99] ([i915#15342] / [i915#15481]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#15479]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@i915_driver_hw_probe: - shard-rkl: NOTRUN -> [ABORT][101] ([i915#15481]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [DMESG-WARN][102] ([i915#15342]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#14544] / [i915#8399]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8399]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][106] +12 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][107] ([i915#13790] / [i915#2681]) +1 other test warn [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#13356]) +2 other tests incomplete [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk8/igt@i915_pm_rpm@system-suspend.html - shard-dg1: [PASS][109] -> [DMESG-WARN][110] ([i915#4391] / [i915#4423]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-12/igt@i915_pm_rpm@system-suspend.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-12/igt@i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681] / [i915#6621]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4387]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][115] ([i915#4387]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-1/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-12/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][117] ([i915#4387]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#8437]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@workarounds: - shard-dg2: NOTRUN -> [DMESG-FAIL][119] ([i915#12061]) +1 other test dmesg-fail [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#7707]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7707]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#12454] / [i915#12712]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5286]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][128] -> [FAIL][129] ([i915#5138]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][131] +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3638]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3828]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#3828]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3638]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544] / [i915#3638]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +8 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][139] +24 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#12313]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +191 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313] / [i915#14544]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][146] +220 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +59 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +61 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#6095]) +15 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +67 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6095]) +19 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12805]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][154] ([i915#15582]) +3 other tests incomplete [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][155] -> [INCOMPLETE][156] ([i915#15582]) +1 other test incomplete [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#14098] / [i915#6095]) +50 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#6095]) +44 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#12313]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#12313]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#12313]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#6095]) +137 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][163] +373 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3742]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3742]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#13781]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13781]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13783]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][173] +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#9979]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][182] ([i915#7173]) +3 other tests fail [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#6944]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_content_protection@atomic-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#6944]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@kms_content_protection@atomic-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6944]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_content_protection@atomic-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][186] ([i915#6944]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#15330] / [i915#3116]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544] / [i915#15330]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#15330]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#15330]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544] / [i915#6944]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#9424]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#9424]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#6944]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3555]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8814]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8814]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][201] -> [FAIL][202] ([i915#13566]) +3 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: NOTRUN -> [FAIL][203] ([i915#13566]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#14544] / [i915#3555]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3555]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#13049]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#13049]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#13049]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: NOTRUN -> [FAIL][210] ([i915#13566]) +1 other test fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][211] -> [FAIL][212] ([i915#13566]) +3 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-256x85.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#13049] / [i915#14544]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@128x128-left-edge: - shard-dg1: [PASS][214] -> [DMESG-WARN][215] ([i915#4423]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-13/igt@kms_cursor_edge_walk@128x128-left-edge.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_cursor_edge_walk@128x128-left-edge.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#4103]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#4103]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#13046] / [i915#5354]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9809]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#14544]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9067]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#9723]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#1257]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#1257]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][225] ([i915#1257]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-8/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#13749]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#13748]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#13707]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#13707]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][230] ([i915#13707]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-10/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#13707]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#13707]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#3840]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3840]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3840] / [i915#9053]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#1839]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#658]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#14544] / [i915#658]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#9934]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3637] / [i915#9934]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#9934]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#8381]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9934]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12745] / [i915#4839]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][246] ([i915#4839]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#9934]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3637] / [i915#9934]) +8 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#3637] / [i915#9934]) +6 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8810] / [i915#8813]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#2672] / [i915#3555]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8810] / [i915#8813]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#14544] / [i915#2672]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#15573]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#2672]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672] / [i915#3555]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#15573]) +5 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#5190]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#2672]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#14544] / [i915#1825]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#5354]) +12 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8708]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#15574]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#15574]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#15574]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#10055]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#15104]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#8708]) +10 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][277] +32 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1825]) +37 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][279] +48 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15102]) +16 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#5439]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#9766]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#9766]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#9766]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9766]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#15102]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#14544] / [i915#15102]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#15102]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][289] ([i915#15102]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#15102] / [i915#3023]) +17 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8708]) +5 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#1825]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15574]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#15574]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#15574]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#15574]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#15102] / [i915#3458]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#15102] / [i915#3458]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#15102]) +21 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15460]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#15458]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#13688]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#15460]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#14544] / [i915#15459]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#6301]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][310] ([i915#12756] / [i915#13409] / [i915#13476]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][311] ([i915#13409] / [i915#13476]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#14712]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#14712]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2: NOTRUN -> [SKIP][314] ([i915#14712]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-rkl: NOTRUN -> [SKIP][315] ([i915#14712]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#14712]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][317] ([i915#10647] / [i915#12177]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][318] ([i915#10647]) +1 other test fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#13958]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#13958]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][321] ([i915#13958]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-x.html - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#13958]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#13958]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#13958]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#14259]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#14259]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#6953] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#6953]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#6953]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#15329]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#15329]) +9 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b: - shard-snb: NOTRUN -> [SKIP][333] +136 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#12343]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9812]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#5354]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9685]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][339] -> [SKIP][340] ([i915#9340]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#14544] / [i915#15073]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#15073]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][343] ([i915#4077]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-19/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][344] -> [SKIP][345] ([i915#15073]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#15073]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#15073]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][348] -> [SKIP][349] ([i915#15073]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][350] -> [SKIP][351] ([i915#15073]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [PASS][352] -> [INCOMPLETE][353] ([i915#14419]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#6524] / [i915#6805]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#6524]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#6524]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#11520]) +4 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#12316]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#11520]) +10 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520] / [i915#14544]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#11520]) +2 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][363] ([i915#11520]) +3 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][364] ([i915#11520]) +6 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][365] ([i915#11520]) +11 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][366] ([i915#11520]) +8 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9683]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#9732]) +17 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-6/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-suspend@edp-1: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#9688]) +6 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@kms_psr@fbc-psr-suspend@edp-1.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9732]) +13 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-render: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +25 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#9732]) +11 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +10 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#5289]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#5289]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12755]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][379] ([i915#12755]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#5190]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#5289]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#3555]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][383] ([i915#13179]) +1 other test abort [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk8/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#3555]) +3 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#8623]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][386] -> [INCOMPLETE][387] ([i915#12276]) +1 other test incomplete [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#9906]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][389] ([i915#11920]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-1/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][390] ([i915#11920]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][391] ([i915#11920]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-19/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][392] ([i915#11920]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-9/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#11920]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][394] -> [FAIL][395] ([i915#15420]) +1 other test fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-mtlp-8/igt@kms_vrr@negative-basic.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#9906]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#9906]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][398] ([i915#9906]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][399] ([i915#8808] / [i915#9906]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][400] ([i915#9906]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][401] ([i915#9100]) +1 other test fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: NOTRUN -> [FAIL][402] ([i915#4349]) +4 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][403] ([i915#4349]) +4 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk10: NOTRUN -> [FAIL][404] ([i915#14433]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-glk10/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#8516]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][406] -> [FAIL][407] ([i915#4349]) +10 other tests fail [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [PASS][408] -> [FAIL][409] ([i915#4349]) +7 other tests fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs1.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-5/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [PASS][410] -> [FAIL][411] ([i915#4349]) +3 other tests fail [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-12/igt@perf_pmu@render-node-busy-idle@vcs1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][412] ([i915#3708]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-17/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][413] ([i915#3708]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][414] ([i915#12910]) +10 other tests fail [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-mtlp: NOTRUN -> [FAIL][415] ([i915#12910]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2: NOTRUN -> [SKIP][416] ([i915#9917]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][417] ([i915#9917]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@drm_read@short-buffer-block: - shard-dg1: [DMESG-WARN][418] ([i915#4423]) -> [PASS][419] +4 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-18/igt@drm_read@short-buffer-block.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-14/igt@drm_read@short-buffer-block.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][420] ([i915#13390]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@gem_eio@in-flight-suspend.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][422] ([i915#7984]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-mtlp-5/igt@i915_power@sanity.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [DMESG-WARN][424] ([i915#4391] / [i915#4423]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][426] ([i915#15582]) -> [PASS][427] +1 other test pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][428] ([i915#13566]) -> [PASS][429] +5 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [FAIL][430] ([i915#13566]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [TIMEOUT][432] ([i915#14033] / [i915#14350]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][434] ([i915#14033]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][436] ([i915#3555] / [i915#8228]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-5/igt@kms_hdr@static-toggle.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_hdr@static-toggle.html - shard-rkl: [SKIP][438] ([i915#3555] / [i915#8228]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_hdr@static-toggle.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-1/igt@kms_hdr@static-toggle.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][440] ([i915#14412]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][442] ([i915#15073]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#15073]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html #### Warnings #### * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][446] ([i915#8562]) -> [SKIP][447] ([i915#14544] / [i915#8562]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@gem_create@create-ext-set-pat.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#4525]) -> [SKIP][449] ([i915#4525]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gem_exec_balancer@parallel.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][450] ([i915#4525]) -> [SKIP][451] ([i915#14544] / [i915#4525]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][452] ([i915#3281]) -> [SKIP][453] ([i915#14544] / [i915#3281]) +6 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#3281]) -> [SKIP][455] ([i915#3281]) +3 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][456] ([i915#4613]) -> [SKIP][457] ([i915#14544] / [i915#4613]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#4613]) -> [SKIP][459] ([i915#4613]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@gem_lmem_swapping@verify-random.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][460] ([i915#3282]) -> [SKIP][461] ([i915#14544] / [i915#3282]) +4 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3282]) -> [SKIP][463] ([i915#3282]) +2 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#8411]) -> [SKIP][465] ([i915#8411]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][466] ([i915#3297]) -> [SKIP][467] ([i915#14544] / [i915#3297]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#2527]) -> [SKIP][469] ([i915#2527]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#5723]) -> [SKIP][471] ([i915#5723]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#9531]) -> [SKIP][473] ([i915#9531]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#5286]) -> [SKIP][475] ([i915#5286]) +3 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][476] ([i915#5286]) -> [SKIP][477] ([i915#14544] / [i915#5286]) +2 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: [SKIP][478] ([i915#3638] / [i915#4423]) -> [SKIP][479] ([i915#3638]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-12/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][480] ([i915#3638]) -> [SKIP][481] ([i915#14544] / [i915#3638]) +2 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][482] ([i915#14098] / [i915#6095]) -> [SKIP][483] ([i915#14098] / [i915#14544] / [i915#6095]) +12 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][484] ([i915#12313] / [i915#14544]) -> [SKIP][485] ([i915#12313]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: [SKIP][486] ([i915#12313]) -> [SKIP][487] ([i915#12313] / [i915#14544]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][488] ([i915#6095]) -> [SKIP][489] ([i915#14544] / [i915#6095]) +7 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#6095]) -> [SKIP][491] ([i915#6095]) +3 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][492] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#14098] / [i915#6095]) +5 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][494] ([i915#4423] / [i915#6095]) -> [SKIP][495] ([i915#6095]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-18/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-4.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-16/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-4.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: [SKIP][496] ([i915#14544]) -> [SKIP][497] +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-negative: - shard-rkl: [SKIP][498] -> [SKIP][499] ([i915#14544]) +9 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_chamelium_color@ctm-negative.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][500] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][501] ([i915#11151] / [i915#7828]) +3 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][502] ([i915#11151] / [i915#7828]) -> [SKIP][503] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][505] ([i915#6944] / [i915#7118] / [i915#9424]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_content_protection@atomic.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: [SKIP][506] ([i915#6944]) -> [FAIL][507] ([i915#7173]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-5/igt@kms_content_protection@atomic-dpms-hdcp14.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][508] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][509] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_content_protection@legacy.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][510] ([i915#6944] / [i915#7118]) -> [FAIL][511] ([i915#7173]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-4/igt@kms_content_protection@srm.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-dg2: [FAIL][512] ([i915#7173]) -> [SKIP][513] ([i915#6944]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-11/igt@kms_content_protection@suspend-resume.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-6/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][514] ([i915#13049]) -> [SKIP][515] ([i915#13049] / [i915#14544]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][516] ([i915#3555]) -> [SKIP][517] ([i915#14544] / [i915#3555]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_cursor_crc@cursor-random-32x10.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: [SKIP][518] ([i915#3555] / [i915#4423]) -> [SKIP][519] ([i915#3555]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x10.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][520] ([i915#4103]) -> [SKIP][521] ([i915#14544] / [i915#4103]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#9723]) -> [SKIP][523] ([i915#9723]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][524] ([i915#3955]) -> [SKIP][525] ([i915#14544] / [i915#3955]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-8/igt@kms_fbcon_fbt@psr.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#9934]) -> [SKIP][527] ([i915#9934]) +2 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: [SKIP][528] ([i915#9934]) -> [SKIP][529] ([i915#14544] / [i915#9934]) +2 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][531] ([i915#2672] / [i915#3555]) +2 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/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: [SKIP][532] ([i915#14544] / [i915#2672]) -> [SKIP][533] ([i915#2672]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][534] ([i915#2672] / [i915#3555]) -> [SKIP][535] ([i915#14544] / [i915#2672] / [i915#3555]) +1 other test skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: [SKIP][536] ([i915#2672]) -> [SKIP][537] ([i915#14544] / [i915#2672]) +1 other test skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: [SKIP][538] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][539] ([i915#15102] / [i915#3458]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][540] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][541] ([i915#15102] / [i915#3458]) +1 other test skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][542] ([i915#1825]) -> [SKIP][543] ([i915#14544] / [i915#1825]) +19 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15574]) -> [SKIP][545] ([i915#15574]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][546] ([i915#5439]) -> [SKIP][547] ([i915#14544] / [i915#5439]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#15102]) -> [SKIP][549] ([i915#15102]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][550] ([i915#15102]) -> [SKIP][551] ([i915#14544] / [i915#15102]) +1 other test skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][552] ([i915#15102] / [i915#3023]) -> [SKIP][553] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][554] ([i915#15102] / [i915#3458]) -> [SKIP][555] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][557] ([i915#15102] / [i915#3023]) +7 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#1825]) -> [SKIP][559] ([i915#1825]) +8 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite: - shard-rkl: [SKIP][560] ([i915#15574]) -> [SKIP][561] ([i915#14544] / [i915#15574]) +1 other test skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][562] ([i915#12713]) -> [SKIP][563] ([i915#13331]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#15459]) -> [SKIP][565] ([i915#15459]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][566] ([i915#15458]) -> [SKIP][567] ([i915#14544] / [i915#15458]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][568] ([i915#1839] / [i915#4816]) -> [SKIP][569] ([i915#14544] / [i915#1839] / [i915#4816]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-4: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#3555]) -> [SKIP][571] ([i915#3555]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: [SKIP][572] ([i915#13958] / [i915#14544]) -> [SKIP][573] ([i915#13958]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][574] ([i915#12343]) -> [SKIP][575] ([i915#12343] / [i915#14544]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][576] ([i915#5354]) -> [SKIP][577] ([i915#14544] / [i915#5354]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][578] ([i915#6524]) -> [SKIP][579] ([i915#14544] / [i915#6524]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_prime@d3hot.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][580] ([i915#11520]) -> [SKIP][581] ([i915#11520] / [i915#14544]) +4 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][582] ([i915#11520] / [i915#14544]) -> [SKIP][583] ([i915#11520]) +4 other tests skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][584] ([i915#14544] / [i915#9683]) -> [SKIP][585] ([i915#9683]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][586] ([i915#9683]) -> [SKIP][587] ([i915#14544] / [i915#9683]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-blt: - shard-rkl: [SKIP][588] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][589] ([i915#1072] / [i915#9732]) +6 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-8/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: [SKIP][590] ([i915#1072] / [i915#9732]) -> [SKIP][591] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][592] ([i915#9685]) -> [SKIP][593] ([i915#14544] / [i915#9685]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][594] ([i915#14544] / [i915#5289]) -> [SKIP][595] ([i915#5289]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][596] ([i915#15243] / [i915#3555]) -> [SKIP][597] ([i915#14544] / [i915#15243] / [i915#3555]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-5/igt@kms_vrr@flip-suspend.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][598] ([i915#9917]) -> [SKIP][599] ([i915#14544] / [i915#9917]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8716/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15573]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15573 [i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8716 -> IGTPW_14414 CI-20190529: 20190529 CI_DRM_17877: ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14414: 14414 IGT_8716: 8716 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14414/index.html [-- Attachment #2: Type: text/html, Size: 204541 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa ` (2 preceding siblings ...) 2026-01-24 0:08 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-01-24 3:41 ` Patchwork 2026-01-28 10:37 ` [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Mallesh, Koujalagi 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-01-24 3:41 UTC (permalink / raw) To: Karthik Poosa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55010 bytes --] == Series Details == Series: tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) URL : https://patchwork.freedesktop.org/series/158829/ State : failure == Summary == CI Bug Log - changes from XEIGT_8716_FULL -> XEIGTPW_14414_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14414_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14414_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14414_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_backlight@fade-with-dpms: - shard-lnl: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-2/igt@kms_pm_backlight@fade-with-dpms.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_psr@pr-cursor-plane-move: - shard-bmg: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@kms_psr@pr-cursor-plane-move.html * igt@xe_exec_system_allocator@many-64k-mmap-race: - shard-bmg: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-race.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-race.html * igt@xe_exec_system_allocator@partial-middle-remap-cpu-fault: - shard-bmg: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@xe_exec_system_allocator@partial-middle-remap-cpu-fault.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@xe_exec_system_allocator@partial-middle-remap-cpu-fault.html Known issues ------------ Here are the changes found in XEIGTPW_14414_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotrebind: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#6779]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@core_hotunplug@hotrebind.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@core_hotunplug@hotrebind.html * igt@kms_atomic@plane-invalid-params: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#6703]) +61 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@kms_atomic@plane-invalid-params.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_atomic@plane-invalid-params.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#7059]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#610]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2191]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6703]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3432]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4: - shard-lnl: NOTRUN -> [FAIL][27] ([Intel XE#6968]) +3 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#307] / [Intel XE#6974]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_content_protection@dp-mst-type-1.html - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2390] / [Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1468]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_content_protection@mei-interface.html - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2341]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2321]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2: - shard-bmg: [PASS][36] -> [FAIL][37] ([Intel XE#6841]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-dp-2.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#5299]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4331]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2244]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4422]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4156]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1421]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-panning: - shard-bmg: [PASS][46] -> [ABORT][47] ([Intel XE#5545]) +1 other test abort [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_flip@flip-vs-panning.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_flip@flip-vs-panning.html * igt@kms_flip@flip-vs-panning@b-dp2: - shard-bmg: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#6766]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_flip@flip-vs-panning@b-dp2.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_flip@flip-vs-panning@b-dp2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1397] / [Intel XE#1745]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1397]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2293] / [Intel XE#2380]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#352]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6312]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2311]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#656]) +16 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4141]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7061]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2352]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#651]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2313]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7061]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#6901]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#4596]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#870]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#718]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_rotation_crc@multiplane-rotation: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#1874]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-90.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#3414] / [Intel XE#3904]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1127]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2330]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1435]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1435]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#330]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2450]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2168]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_vrr@cmrr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][90] ([Intel XE#4459]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_create@multigpu-create-massive-size: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#944]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#4837]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@xe_eudebug@basic-client.html * igt@xe_eudebug@basic-vm-access-faultable: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4837]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_eudebug@basic-vm-access-faultable.html * igt@xe_eudebug_online@set-breakpoint: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][96] -> [INCOMPLETE][97] ([Intel XE#6321]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-cm: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#688]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@xe_evict@evict-small-cm.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7140]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1392]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2322]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7136]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7136]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#6874]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6874]) +13 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html * igt@xe_exec_system_allocator@many-64k-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#5007]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-7/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#5007]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4943]) +7 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-1/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][109] ([Intel XE#7098]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +6 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_exec_system_allocator@process-many-stride-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-mmap-remap-madvise: - shard-lnl: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#7063]) +4 other tests dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-madvise.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-madvise.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7138]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#7138]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: NOTRUN -> [ABORT][115] ([Intel XE#5466]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_multigpu_svm@mgpu-atomic-op-conflict: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#6964]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html * igt@xe_multigpu_svm@mgpu-migration-prefetch: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#6964]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-4/igt@xe_multigpu_svm@mgpu-migration-prefetch.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2284]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-i2c: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#5742]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#584]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-4/igt@xe_pm@s3-mocs.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#4733]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#944]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][123] -> [FAIL][124] ([Intel XE#6569]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#6376]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-8/igt@xe_sriov_vram@vf-access-after-resize-up.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][126] ([Intel XE#4665]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-3/igt@intel_hwmon@hwmon-write.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@intel_hwmon@hwmon-write.html * igt@kms_color@ctm-0-50: - shard-bmg: [ABORT][128] ([Intel XE#5545]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_color@ctm-0-50.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@kms_color@ctm-0-50.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][130] ([Intel XE#6715]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][132] ([Intel XE#301]) -> [PASS][133] +1 other test pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-lnl: [DMESG-WARN][134] ([Intel XE#7063]) -> [PASS][135] +1 other test pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][136] ([Intel XE#718]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter: - shard-lnl: [DMESG-WARN][138] ([Intel XE#4537]) -> [PASS][139] +1 other test pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-3/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html * igt@xe_exec_system_allocator@threads-many-execqueues-new: - shard-bmg: [ABORT][140] -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-execqueues-new.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-execqueues-new.html * igt@xe_module_load@load: - shard-bmg: ([PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [SKIP][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166]) ([Intel XE#2457]) -> ([PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-3/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-3/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-3/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-9/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-9/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-9/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-9/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-8/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-4/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-7/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-10/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-1/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-9/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-3/igt@xe_module_load@load.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-lnl: [ABORT][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-lnl-4/igt@xe_pm@s2idle-d3hot-basic-exec.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-lnl-2/igt@xe_pm@s2idle-d3hot-basic-exec.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [SKIP][194] ([Intel XE#1124]) -> [SKIP][195] ([Intel XE#6703]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][196] ([Intel XE#2887]) -> [SKIP][197] ([Intel XE#6703]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][198] ([Intel XE#2252]) -> [SKIP][199] ([Intel XE#6703]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][200] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][201] ([Intel XE#6703]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@kms_content_protection@atomic.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][202] ([Intel XE#2311]) -> [SKIP][203] ([Intel XE#6703]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: [SKIP][204] ([Intel XE#7061]) -> [SKIP][205] ([Intel XE#6703]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][206] ([Intel XE#4141]) -> [SKIP][207] ([Intel XE#6703]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][208] ([Intel XE#2352]) -> [SKIP][209] ([Intel XE#6703]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][210] ([Intel XE#2313]) -> [SKIP][211] ([Intel XE#6703]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-bmg: [SKIP][212] ([Intel XE#6886]) -> [SKIP][213] ([Intel XE#6703]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_psr@psr-sprite-blt: - shard-bmg: [SKIP][214] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][215] ([Intel XE#1406] / [Intel XE#6703]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@kms_psr@psr-sprite-blt.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@kms_psr@psr-sprite-blt.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][216] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][217] ([Intel XE#6703]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@xe_eudebug_online@stopped-thread.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_eudebug_online@stopped-thread.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: [SKIP][218] ([Intel XE#2322]) -> [SKIP][219] ([Intel XE#6703]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-basic.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_multi_queue@two-queues-userptr: - shard-bmg: [SKIP][220] ([Intel XE#6874]) -> [SKIP][221] ([Intel XE#6703]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-userptr.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-userptr.html * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge: - shard-bmg: [SKIP][222] ([Intel XE#4943]) -> [SKIP][223] ([Intel XE#6703]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html * igt@xe_pm@d3cold-basic-exec: - shard-bmg: [SKIP][224] ([Intel XE#2284]) -> [SKIP][225] ([Intel XE#6703]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-8/igt@xe_pm@d3cold-basic-exec.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][226] ([Intel XE#944]) -> [SKIP][227] ([Intel XE#6703]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8716/shard-bmg-10/igt@xe_query@multigpu-query-invalid-cs-cycles.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715 [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8716 -> IGTPW_14414 IGTPW_14414: 14414 IGT_8716: 8716 xe-4442-ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145: ab42b1c3fe4ce1ae5534c51b880d3a97e6bba145 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14414/index.html [-- Attachment #2: Type: text/html, Size: 64130 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa ` (3 preceding siblings ...) 2026-01-24 3:41 ` ✗ Xe.CI.Full: " Patchwork @ 2026-01-28 10:37 ` Mallesh, Koujalagi 2026-01-30 6:16 ` Poosa, Karthik 4 siblings, 1 reply; 8+ messages in thread From: Mallesh, Koujalagi @ 2026-01-28 10:37 UTC (permalink / raw) To: Karthik Poosa, igt-dev Cc: anshuman.gupta, badal.nilawar, riana.tauro, raag.jadav [-- Attachment #1: Type: text/plain, Size: 2090 bytes --] On 24-01-2026 12:05 am, Karthik Poosa wrote: > Improve hwmon-read test to check if current temperature > is above critical temperature limit in hwmon-read test. > This will help identify any thermal issues with the > setups during test runs. > > v2: > - Address review comments. (Mallesh) > - Call check_temp_is_valid() only for temperature hwmon entries. Please change check_if_temp_valid() function name > > Signed-off-by: Karthik Poosa<karthik.poosa@intel.com> > --- > tests/intel/intel_hwmon.c | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > diff --git a/tests/intel/intel_hwmon.c b/tests/intel/intel_hwmon.c > index 103ae69cd..9deb48a00 100644 > --- a/tests/intel/intel_hwmon.c > +++ b/tests/intel/intel_hwmon.c > @@ -26,6 +26,28 @@ > > IGT_TEST_DESCRIPTION("Tests for intel hwmon"); > > +static void check_if_temp_valid(int hwm, char *sysfs_name) > +{ > + char str[32] = {0}; > + uint32_t cur_temp = 0; > + uint8_t ch = 0; > + s32 limit = 0; > + > + /* Get the channel number and sysfs entry suffix. */ > + igt_assert(sscanf(sysfs_name, "temp%hhu_%s", &ch, str) == 2); Buffer overflow when string length more than 31, we can use "temp%hhu_%31s" as defensive. Thanks, -/Mallesh > + > + /* If entry is tempX_input, check if it exceeds tempX_crit. */ > + if (!strncmp("input", str, 5)) { > + sprintf(str, "temp%hhu_crit", ch); > + if (!faccessat(hwm, str, R_OK, 0)) { > + igt_assert_lt(0, igt_sysfs_scanf(hwm, sysfs_name, "%d", &cur_temp)); > + igt_assert_lt(0, igt_sysfs_scanf(hwm, str, "%d", &limit)); > + igt_debug("current temp = %d limit = %d\n", cur_temp, limit); > + igt_assert_f(cur_temp <= limit, "current temperature exceeds limit!\n"); > + } > + } > +} > + > static void hwmon_read(int hwm) > { > struct dirent *de; > @@ -43,6 +65,9 @@ static void hwmon_read(int hwm) > igt_assert(igt_sysfs_scanf(hwm, de->d_name, "%127s", val) == 1); > igt_debug("'%s': %s\n", de->d_name, val); > > + if (!strncmp(de->d_name, "temp", 4)) > + check_if_temp_valid(hwm, de->d_name); > + > } > closedir(dir); > } [-- Attachment #2: Type: text/html, Size: 2994 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read 2026-01-28 10:37 ` [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Mallesh, Koujalagi @ 2026-01-30 6:16 ` Poosa, Karthik 2026-01-30 8:19 ` Mallesh, Koujalagi 0 siblings, 1 reply; 8+ messages in thread From: Poosa, Karthik @ 2026-01-30 6:16 UTC (permalink / raw) To: Mallesh, Koujalagi, igt-dev Cc: anshuman.gupta, badal.nilawar, riana.tauro, raag.jadav [-- Attachment #1: Type: text/plain, Size: 2398 bytes --] On 28-01-2026 16:07, Mallesh, Koujalagi wrote: > > > On 24-01-2026 12:05 am, Karthik Poosa wrote: >> Improve hwmon-read test to check if current temperature >> is above critical temperature limit in hwmon-read test. >> This will help identify any thermal issues with the >> setups during test runs. >> >> v2: >> - Address review comments. (Mallesh) >> - Call check_temp_is_valid() only for temperature hwmon entries. > Please change check_if_temp_valid() function name >> Signed-off-by: Karthik Poosa<karthik.poosa@intel.com> >> --- >> tests/intel/intel_hwmon.c | 25 +++++++++++++++++++++++++ >> 1 file changed, 25 insertions(+) >> >> diff --git a/tests/intel/intel_hwmon.c b/tests/intel/intel_hwmon.c >> index 103ae69cd..9deb48a00 100644 >> --- a/tests/intel/intel_hwmon.c >> +++ b/tests/intel/intel_hwmon.c >> @@ -26,6 +26,28 @@ >> >> IGT_TEST_DESCRIPTION("Tests for intel hwmon"); >> >> +static void check_if_temp_valid(int hwm, char *sysfs_name) >> +{ >> + char str[32] = {0}; >> + uint32_t cur_temp = 0; >> + uint8_t ch = 0; >> + s32 limit = 0; >> + >> + /* Get the channel number and sysfs entry suffix. */ >> + igt_assert(sscanf(sysfs_name, "temp%hhu_%s", &ch, str) == 2); > > Buffer overflow when string length more than 31, we can use > "temp%hhu_%31s" as defensive. > maximum length of hwmon sysfs attribute is 32 Bytes See: in drivers/hwmon/hwmon.c #define MAX_SYSFS_ATTR_NAME_LENGTH 32 So existing 32 bytes of str should suffice. > Thanks, > > -/Mallesh > >> + >> + /* If entry is tempX_input, check if it exceeds tempX_crit. */ >> + if (!strncmp("input", str, 5)) { >> + sprintf(str, "temp%hhu_crit", ch); >> + if (!faccessat(hwm, str, R_OK, 0)) { >> + igt_assert_lt(0, igt_sysfs_scanf(hwm, sysfs_name, "%d", &cur_temp)); >> + igt_assert_lt(0, igt_sysfs_scanf(hwm, str, "%d", &limit)); >> + igt_debug("current temp = %d limit = %d\n", cur_temp, limit); >> + igt_assert_f(cur_temp <= limit, "current temperature exceeds limit!\n"); >> + } >> + } >> +} >> + >> static void hwmon_read(int hwm) >> { >> struct dirent *de; >> @@ -43,6 +65,9 @@ static void hwmon_read(int hwm) >> igt_assert(igt_sysfs_scanf(hwm, de->d_name, "%127s", val) == 1); >> igt_debug("'%s': %s\n", de->d_name, val); >> >> + if (!strncmp(de->d_name, "temp", 4)) >> + check_if_temp_valid(hwm, de->d_name); >> + >> } >> closedir(dir); >> } [-- Attachment #2: Type: text/html, Size: 3643 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read 2026-01-30 6:16 ` Poosa, Karthik @ 2026-01-30 8:19 ` Mallesh, Koujalagi 0 siblings, 0 replies; 8+ messages in thread From: Mallesh, Koujalagi @ 2026-01-30 8:19 UTC (permalink / raw) To: Poosa, Karthik, igt-dev Cc: anshuman.gupta, badal.nilawar, riana.tauro, raag.jadav [-- Attachment #1: Type: text/plain, Size: 2626 bytes --] On 30-01-2026 11:46 am, Poosa, Karthik wrote: > > > On 28-01-2026 16:07, Mallesh, Koujalagi wrote: >> >> >> On 24-01-2026 12:05 am, Karthik Poosa wrote: >>> Improve hwmon-read test to check if current temperature >>> is above critical temperature limit in hwmon-read test. >>> This will help identify any thermal issues with the >>> setups during test runs. >>> >>> v2: >>> - Address review comments. (Mallesh) >>> - Call check_temp_is_valid() only for temperature hwmon entries. >> Please change check_if_temp_valid() function name >>> Signed-off-by: Karthik Poosa<karthik.poosa@intel.com> >>> --- >>> tests/intel/intel_hwmon.c | 25 +++++++++++++++++++++++++ >>> 1 file changed, 25 insertions(+) >>> >>> diff --git a/tests/intel/intel_hwmon.c b/tests/intel/intel_hwmon.c >>> index 103ae69cd..9deb48a00 100644 >>> --- a/tests/intel/intel_hwmon.c >>> +++ b/tests/intel/intel_hwmon.c >>> @@ -26,6 +26,28 @@ >>> >>> IGT_TEST_DESCRIPTION("Tests for intel hwmon"); >>> >>> +static void check_if_temp_valid(int hwm, char *sysfs_name) >>> +{ >>> + char str[32] = {0}; >>> + uint32_t cur_temp = 0; >>> + uint8_t ch = 0; >>> + s32 limit = 0; >>> + >>> + /* Get the channel number and sysfs entry suffix. */ >>> + igt_assert(sscanf(sysfs_name, "temp%hhu_%s", &ch, str) == 2); >> >> Buffer overflow when string length more than 31, we can use >> "temp%hhu_%31s" as defensive. >> > maximum length of hwmon sysfs attribute is 32 Bytes > > See: in drivers/hwmon/hwmon.c > > #define MAX_SYSFS_ATTR_NAME_LENGTH 32 > > So existing 32 bytes of str should suffice. > Agreed that hwmon sysfs attribute (32 bytes) which makes overflow unlikely. Thanks, -/Mallesh >> Thanks, >> >> -/Mallesh >> >>> + >>> + /* If entry is tempX_input, check if it exceeds tempX_crit. */ >>> + if (!strncmp("input", str, 5)) { >>> + sprintf(str, "temp%hhu_crit", ch); >>> + if (!faccessat(hwm, str, R_OK, 0)) { >>> + igt_assert_lt(0, igt_sysfs_scanf(hwm, sysfs_name, "%d", &cur_temp)); >>> + igt_assert_lt(0, igt_sysfs_scanf(hwm, str, "%d", &limit)); >>> + igt_debug("current temp = %d limit = %d\n", cur_temp, limit); >>> + igt_assert_f(cur_temp <= limit, "current temperature exceeds limit!\n"); >>> + } >>> + } >>> +} >>> + >>> static void hwmon_read(int hwm) >>> { >>> struct dirent *de; >>> @@ -43,6 +65,9 @@ static void hwmon_read(int hwm) >>> igt_assert(igt_sysfs_scanf(hwm, de->d_name, "%127s", val) == 1); >>> igt_debug("'%s': %s\n", de->d_name, val); >>> >>> + if (!strncmp(de->d_name, "temp", 4)) >>> + check_if_temp_valid(hwm, de->d_name); >>> + >>> } >>> closedir(dir); >>> } [-- Attachment #2: Type: text/html, Size: 4169 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-01-30 8:20 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-01-23 18:35 [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Karthik Poosa 2026-01-23 19:09 ` ✓ Xe.CI.BAT: success for tests/intel/hwmon: Check temperature limit in hwmon-read (rev2) Patchwork 2026-01-23 19:21 ` ✓ i915.CI.BAT: " Patchwork 2026-01-24 0:08 ` ✗ i915.CI.Full: failure " Patchwork 2026-01-24 3:41 ` ✗ Xe.CI.Full: " Patchwork 2026-01-28 10:37 ` [PATCH i-g-t v2] tests/intel/hwmon: Check temperature limit in hwmon-read Mallesh, Koujalagi 2026-01-30 6:16 ` Poosa, Karthik 2026-01-30 8:19 ` Mallesh, Koujalagi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox