* [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories
@ 2024-07-04 16:44 Marcin Bernatowicz
2024-07-04 18:51 ` ✓ CI.xeBAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Marcin Bernatowicz @ 2024-07-04 16:44 UTC (permalink / raw)
To: igt-dev; +Cc: zbigniew.kempczynski, kamil.konieczny, michal.wajdeczko
Skip attributes in subdirectories as they are not used for filtering.
This change improves speed and reduces the impact of non-DRM related
component bugs on testing, such as ASPM issues.
Rename function is_on_blacklist to is_on_blocklist to promote more
inclusive language.
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
---
lib/igt_device_scan.c | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index 9a2da3d62..6473ca7ad 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -433,7 +433,7 @@ static enum dev_type __pci_devtype(uint16_t vendor, uint16_t device, const char
/* Reading sysattr values can take time (even seconds),
* we want to avoid reading such keys.
*/
-static bool is_on_blacklist(const char *what)
+static bool is_on_blocklist(const char *what)
{
static const char *keys[] = { "config", "modalias", "modes",
"resource",
@@ -442,16 +442,18 @@ static bool is_on_blacklist(const char *what)
"resource0_wc", "resource1_wc", "resource2_wc",
"resource3_wc", "resource4_wc", "resource5_wc",
"uevent", NULL};
- const char *key;
- int i = 0;
+ const char **key;
if (what == NULL)
return false;
- while ((key = keys[i++])) {
- if (strcmp(key, what) == 0)
+ /* Skip attributes in subdirectories */
+ if (strchr(what, '/') != NULL)
+ return true;
+
+ for (key = keys; *key; key++)
+ if (strcmp(*key, what) == 0)
return true;
- }
return false;
@@ -553,7 +555,7 @@ static void get_attrs(struct udev_device *dev, struct igt_device *idev)
const char *key = udev_list_entry_get_name(entry);
const char *value;
- if (is_on_blacklist(key)) {
+ if (is_on_blocklist(key)) {
entry = udev_list_entry_get_next(entry);
continue;
}
--
2.31.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ CI.xeBAT: success for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz @ 2024-07-04 18:51 ` Patchwork 2024-07-04 19:01 ` ✓ Fi.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-07-04 18:51 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1906 bytes --] == Series Details == Series: lib/igt_device_scan: Skip attributes in subdirectories URL : https://patchwork.freedesktop.org/series/135769/ State : success == Summary == CI Bug Log - changes from XEIGT_7916_BAT -> XEIGTPW_11372_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11372_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-FAIL][1] ([Intel XE#324]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_gt_freq@freq_basic_api: - bat-adlp-7: [FAIL][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/bat-adlp-7/igt@xe_gt_freq@freq_basic_api.html [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 Build changes ------------- * IGT: IGT_7916 -> IGTPW_11372 * Linux: xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6 -> xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6 IGTPW_11372: 11372 IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6: 2bf4c5214910654a6a50082c90f0f4596ea6b0c6 xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6: 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/index.html [-- Attachment #2: Type: text/html, Size: 2524 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz 2024-07-04 18:51 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-07-04 19:01 ` Patchwork 2024-07-05 0:27 ` ✗ CI.xeFULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-07-04 19:01 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3349 bytes --] == Series Details == Series: lib/igt_device_scan: Skip attributes in subdirectories URL : https://patchwork.freedesktop.org/series/135769/ State : success == Summary == CI Bug Log - changes from CI_DRM_15034 -> IGTPW_11372 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11372 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][1] ([i915#180] / [i915#1982] / [i915#9925]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/fi-kbl-7567u/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [DMESG-WARN][3] ([i915#11328]) -> [PASS][4] +80 other tests pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [DMESG-WARN][5] ([i915#180]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/fi-kbl-7567u/igt@kms_busy@basic@flip.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - fi-kbl-7567u: [DMESG-WARN][7] ([i915#10062] / [i915#180] / [i915#9925]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [DMESG-WARN][9] ([i915#180] / [i915#9925]) -> [PASS][10] +36 other tests pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#10062]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10062 [i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7916 -> IGTPW_11372 CI-20190529: 20190529 CI_DRM_15034: 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11372: 11372 IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/index.html [-- Attachment #2: Type: text/html, Size: 4420 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz 2024-07-04 18:51 ` ✓ CI.xeBAT: success for " Patchwork 2024-07-04 19:01 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-07-05 0:27 ` Patchwork 2024-07-05 9:38 ` Bernatowicz, Marcin 2024-07-05 7:59 ` ✗ Fi.CI.IGT: " Patchwork 2024-07-08 6:58 ` [PATCH i-g-t] " Zbigniew Kempczyński 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-07-05 0:27 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 19879 bytes --] == Series Details == Series: lib/igt_device_scan: Skip attributes in subdirectories URL : https://patchwork.freedesktop.org/series/135769/ State : failure == Summary == CI Bug Log - changes from XEIGT_7916_full -> XEIGTPW_11372_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11372_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11372_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 (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11372_full: ### IGT changes ### #### Possible regressions #### * igt@xe_gt_freq@freq_range_exec: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@xe_gt_freq@freq_range_exec.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_gt_freq@freq_range_exec.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@xe_exec_basic@many-execqueues-many-vm-basic: - {shard-lnl}: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-2/igt@xe_exec_basic@many-execqueues-many-vm-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-6/igt@xe_exec_basic@many-execqueues-many-vm-basic.html Known issues ------------ Here are the changes found in XEIGTPW_11372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#316]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#787]) +34 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#306]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#373]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#651]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#653]) +9 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#870]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_pm_backlight@bad-brightness.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#1489]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-433/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#327]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [PASS][21] -> [FAIL][22] ([Intel XE#899]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#756]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1195]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-436/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#288]) +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html * igt@xe_gt_freq@freq_fixed_idle: - shard-dg2-set2: [PASS][27] -> [FAIL][28] ([Intel XE#1414]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_gt_freq@freq_fixed_idle.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [PASS][29] -> [DMESG-WARN][30] ([Intel XE#1214]) +1 other test dmesg-warn [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_pm@s4-d3hot-basic-exec.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_pm@s4-d3hot-basic-exec.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - {shard-lnl}: [FAIL][31] ([Intel XE#1659]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [DMESG-WARN][33] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-position-covered: - {shard-lnl}: [DMESG-FAIL][35] ([Intel XE#324]) -> [PASS][36] +4 other tests pass [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@kms_plane@plane-position-covered.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-7/igt@kms_plane@plane-position-covered.html * {igt@kms_plane@plane-position-covered@pipe-b-plane-4}: - {shard-lnl}: [DMESG-WARN][37] ([Intel XE#324]) -> [PASS][38] +6 other tests pass [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: - shard-dg2-set2: [FAIL][39] ([Intel XE#899]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [INCOMPLETE][41] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][43] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind: - {shard-lnl}: [FAIL][45] -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][47] ([Intel XE#2105]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_module_load@reload: - shard-dg2-set2: [DMESG-WARN][49] ([Intel XE#1214]) -> [PASS][50] +4 other tests pass [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-463/igt@xe_module_load@reload.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [INCOMPLETE][51] ([Intel XE#1195] / [Intel XE#1694]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-userptr.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-userptr.html #### Warnings #### * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][53] ([Intel XE#1195]) -> [FAIL][54] ([Intel XE#1204]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-435/igt@kms_content_protection@lic-type-0.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_content_protection@lic-type-0.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][55] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][56] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [TIMEOUT][57] ([Intel XE#1473]) -> [INCOMPLETE][58] ([Intel XE#1195] / [Intel XE#1473]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2052]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2052 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_7916 -> IGTPW_11372 * Linux: xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6 -> xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6 IGTPW_11372: 11372 IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6: 2bf4c5214910654a6a50082c90f0f4596ea6b0c6 xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6: 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/index.html [-- Attachment #2: Type: text/html, Size: 21073 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ CI.xeFULL: failure for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-05 0:27 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-07-05 9:38 ` Bernatowicz, Marcin 0 siblings, 0 replies; 8+ messages in thread From: Bernatowicz, Marcin @ 2024-07-05 9:38 UTC (permalink / raw) To: igt-dev, I915-ci-infra On 7/5/2024 2:27 AM, Patchwork wrote: > *Patch Details* > *Series:* lib/igt_device_scan: Skip attributes in subdirectories > *URL:* https://patchwork.freedesktop.org/series/135769/ > <https://patchwork.freedesktop.org/series/135769/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/index.html > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/index.html> > > > CI Bug Log - changes from XEIGT_7916_full -> XEIGTPW_11372_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_11372_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_11372_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 (3 -> 3) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > XEIGTPW_11372_full: > > > IGT changes > > > Possible regressions > > * igt@xe_gt_freq@freq_range_exec: > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@xe_gt_freq@freq_range_exec.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_gt_freq@freq_range_exec.html> Not related to the change. Change is connected with device selection/filtering, so either wrong or no device issue would be hit, which does not happen in this and any other tests. Regards, marcin > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@xe_exec_basic@many-execqueues-many-vm-basic: > o {shard-lnl}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-2/igt@xe_exec_basic@many-execqueues-many-vm-basic.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-6/igt@xe_exec_basic@many-execqueues-many-vm-basic.html> > > > Known issues > > Here are the changes found in XEIGTPW_11372_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@kms_big_fb@linear-8bpp-rotate-270: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#316 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-90: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> (Intel XE#1124 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +2 other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +9 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#787 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +34 other tests skip > * > > igt@kms_chamelium_color@ctm-0-50: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#306 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) > * > > igt@kms_chamelium_hpd@hdmi-hpd-fast: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-fast.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#373 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#308 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1 other test skip > * > > igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#651 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +11 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#653 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +9 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#305 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/305> / Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#305 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/305>) +2 other tests skip > * > > igt@kms_pm_backlight@bad-brightness: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_pm_backlight@bad-brightness.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#870 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) > * > > igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-433/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#1489 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) > * > > igt@kms_psr@fbc-psr2-primary-blt: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#929 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +3 other tests skip > * > > igt@kms_rotation_crc@primary-rotation-270: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#327 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) > * > > igt@kms_setmode@basic-clone-single-crtc: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_setmode@basic-clone-single-crtc.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip > * > > igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html> (Intel XE#899 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) > * > > igt@kms_writeback@writeback-fb-id-xrgb2101010: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#756 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-436/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate-race.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) > * > > igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html> (Intel XE#1201 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / Intel XE#288 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +8 other tests skip > * > > igt@xe_gt_freq@freq_fixed_idle: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_gt_freq@freq_fixed_idle.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_gt_freq@freq_fixed_idle.html> (Intel XE#1414 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414>) > * > > igt@xe_pm@s4-d3hot-basic-exec: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_pm@s4-d3hot-basic-exec.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1214 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214>) +1 other test dmesg-warn > > > Possible fixes > > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: > > o {shard-lnl}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#1659 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html> > * > > igt@kms_pipe_crc_basic@suspend-read-crc: > > o shard-dg2-set2: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc.html> (Intel XE#1162 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162> / Intel XE#1214 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html> > * > > igt@kms_plane@plane-position-covered: > > o {shard-lnl}: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@kms_plane@plane-position-covered.html> (Intel XE#324 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-7/igt@kms_plane@plane-position-covered.html> +4 other tests pass > * > > {igt@kms_plane@plane-position-covered@pipe-b-plane-4}: > > o {shard-lnl}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> (Intel XE#324 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> +6 other tests pass > * > > igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html> (Intel XE#899 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html> > * > > igt@xe_evict@evict-mixed-many-threads-small: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html> > * > > igt@xe_evict@evict-mixed-threads-large: > > o shard-dg2-set2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#392 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/392>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html> > * > > igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind: > > o {shard-lnl}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind.html> -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue-rebind.html> > * > > igt@xe_exec_reset@parallel-gt-reset: > > o shard-dg2-set2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html> (Intel XE#2105 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html> > * > > igt@xe_module_load@reload: > > o shard-dg2-set2: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-463/igt@xe_module_load@reload.html> (Intel XE#1214 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_module_load@reload.html> +4 other tests pass > * > > igt@xe_pm@s2idle-vm-bind-userptr: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1694 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-userptr.html> > > > Warnings > > * > > igt@kms_content_protection@lic-type-0: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-435/igt@kms_content_protection@lic-type-0.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-464/igt@kms_content_protection@lic-type-0.html> (Intel XE#1204 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204>) +1 other test fail > * > > igt@xe_evict@evict-beng-mixed-many-threads-large: > > o shard-dg2-set2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1041 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041> / Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#392 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/392>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#392 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/392>) > * > > igt@xe_evict@evict-beng-threads-large: > > o shard-dg2-set2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7916/shard-dg2-464/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11372/shard-dg2-435/igt@xe_evict@evict-beng-threads-large.html> (Intel XE#1195 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * IGT: IGT_7916 -> IGTPW_11372 > * Linux: xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6 -> > xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6 > > IGTPW_11372: 11372 > IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-1562-2bf4c5214910654a6a50082c90f0f4596ea6b0c6: > 2bf4c5214910654a6a50082c90f0f4596ea6b0c6 > xe-1565-55e18f9be7b75c5226a57eff4a3b3eb6110815c6: > 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz ` (2 preceding siblings ...) 2024-07-05 0:27 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-07-05 7:59 ` Patchwork 2024-07-05 10:08 ` Bernatowicz, Marcin 2024-07-08 6:58 ` [PATCH i-g-t] " Zbigniew Kempczyński 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-07-05 7:59 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 68606 bytes --] == Series Details == Series: lib/igt_device_scan: Skip attributes in subdirectories URL : https://patchwork.freedesktop.org/series/135769/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15034_full -> IGTPW_11372_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11372_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11372_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_11372/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11372_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-contexts-1us: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb6/igt@gem_eio@in-flight-contexts-1us.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb4/igt@gem_eio@in-flight-contexts-1us.html Known issues ------------ Here are the changes found in IGTPW_11372_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][5] ([i915#9413]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +10 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3936]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#6268]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][15] ([i915#1099]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb7/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#4771]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][22] ([i915#10386]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4473] / [i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-2/igt@gem_exec_fair@basic-deadline.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][25] ([i915#2842]) +2 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-7/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +10 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +7 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4860]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4613] / [i915#7582]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg2: [PASS][35] -> [FAIL][36] ([i915#10378]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4565]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4077]) +18 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@close: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4083]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4083]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3282]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3282]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4270]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#5190] / [i915#8428]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4079]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4958]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3297]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3297]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#2527]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#2527]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][59] -> [ABORT][60] ([i915#10131] / [i915#10887] / [i915#9820]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][61] -> [ABORT][62] ([i915#9820]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#6590]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][64] ([i915#3591]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#8925]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4387]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#6188]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#5723]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][69] ([i915#9311]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk4/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][70] -> [FAIL][71] ([i915#10031] / [i915#11279]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4212]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4212]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#8709]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8709]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8709]) +11 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#1769] / [i915#3555]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#5286]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4538] / [i915#5286]) +9 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3638]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3638]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4538] / [i915#5190]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4538]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#10656]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@basic-force-joiner: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#10656]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6095]) +91 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#6095]) +49 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#10307] / [i915#6095]) +156 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3742]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4087]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][93] +7 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#7828]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#7828]) +9 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#7828]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#7116] / [i915#9424]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#9424]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3299]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#9424]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#7118]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11453] / [i915#3359]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11453]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#11453]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#11453]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#8814]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3555]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3555]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4103] / [i915#4213]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][110] -> [FAIL][111] ([i915#2346]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#9067]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#4103]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [PASS][114] -> [DMESG-WARN][115] ([i915#10166] / [i915#1982]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-9/igt@kms_cursor_legacy@torture-move@pipe-a.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-5/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3555]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#3840]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#3840]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#1839]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#9934]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][121] -> [FAIL][122] ([i915#2122]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][123] ([i915#2122]) +2 other tests fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#2672]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#2672] / [i915#3555]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#2587] / [i915#2672]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][127] +51 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3458]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#8708]) +14 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][130] +30 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#8708]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5354]) +17 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3023]) +23 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#1825]) +41 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3458]) +22 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html - shard-tglu: NOTRUN -> [SKIP][136] +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#8228]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8228]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@kms_hdr@static-swap.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-tglu: [PASS][139] -> [ABORT][140] ([i915#10159]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-tglu: [PASS][141] -> [INCOMPLETE][142] ([i915#1982] / [i915#8797]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@intel-max-src-size: - shard-snb: NOTRUN -> [SKIP][143] +31 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][144] ([i915#8292]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][145] ([i915#8292]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#9423]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#9423]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#5176] / [i915#9423]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#9423]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#5235]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5235]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#5235]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#5235] / [i915#9423]) +19 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#5354]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#9685]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#9685]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#4077]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][159] -> [FAIL][160] ([i915#8717]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_pm_rpm@i2c.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#9519]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][162] -> [SKIP][163] ([i915#9519]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#9519]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][165] -> [SKIP][166] ([i915#9519]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#6524]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#6524]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#11520]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#11520]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#11520]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#9683]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9683]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-render: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#9732]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-render.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#1072] / [i915#9732]) +11 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#1072] / [i915#9732]) +20 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#1072] / [i915#9732]) +19 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr@psr-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][179] +169 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#5289]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#5289]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [PASS][183] -> [FAIL][184] ([i915#5465]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#9196]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: - shard-dg1: [PASS][187] -> [FAIL][188] ([i915#9196]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9906]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#2437]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2437] / [i915#9412]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2437] / [i915#9412]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#2437] / [i915#9412]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#2434]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#8516]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#8516]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3708]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#3708] / [i915#4077]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@prime_vgem@coherency-gtt.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][199] ([i915#9781]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk7/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][200] ([i915#9781]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][201] ([i915#7297]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@kms: - shard-dg2: [FAIL][203] ([i915#5784]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@gem_eio@kms.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][205] ([i915#2846]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][207] ([i915#2842]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: [FAIL][209] ([i915#10378]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][211] ([i915#9820]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][213] ([i915#1257]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-6/igt@kms_dp_aux_dev.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [FAIL][215] ([i915#6880]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2: [SKIP][217] ([i915#433]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_hdmi_inject@inject-audio.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][219] ([i915#4281]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][221] ([i915#9519]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html - shard-rkl: [SKIP][223] ([i915#9519]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][225] ([IGT#2]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@kms_sysfs_edid_timing.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][227] ([i915#9196]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][229] ([i915#9820]) -> [ABORT][230] ([i915#10887] / [i915#9820]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs: - shard-mtlp: [INCOMPLETE][231] -> [SKIP][232] ([i915#8709]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: [SKIP][233] ([i915#11453]) -> [SKIP][234] ([i915#11453] / [i915#3359]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][235] ([i915#3458]) -> [SKIP][236] ([i915#10433] / [i915#3458]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][237] ([i915#4070] / [i915#4816]) -> [SKIP][238] ([i915#4816]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: [SKIP][239] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][240] ([i915#1072] / [i915#9732]) +11 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: [SKIP][241] ([i915#1072] / [i915#9732]) -> [SKIP][242] ([i915#1072] / [i915#9673] / [i915#9732]) +18 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: [SKIP][243] ([i915#11131] / [i915#4235]) -> [SKIP][244] ([i915#11131]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: [SKIP][245] ([i915#11131] / [i915#4235] / [i915#5190]) -> [SKIP][246] ([i915#11131] / [i915#5190]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: [SKIP][247] ([i915#11131]) -> [SKIP][248] ([i915#11131] / [i915#4235]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][249] ([i915#9100]) -> [FAIL][250] ([i915#7484]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [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#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [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#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#8797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7916 -> IGTPW_11372 CI-20190529: 20190529 CI_DRM_15034: 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11372: 11372 IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/index.html [-- Attachment #2: Type: text/html, Size: 84312 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for lib/igt_device_scan: Skip attributes in subdirectories 2024-07-05 7:59 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-07-05 10:08 ` Bernatowicz, Marcin 0 siblings, 0 replies; 8+ messages in thread From: Bernatowicz, Marcin @ 2024-07-05 10:08 UTC (permalink / raw) To: igt-dev, I915-ci-infra Hi, On 7/5/2024 9:59 AM, Patchwork wrote: > *Patch Details* > *Series:* lib/igt_device_scan: Skip attributes in subdirectories > *URL:* https://patchwork.freedesktop.org/series/135769/ > <https://patchwork.freedesktop.org/series/135769/> > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/index.html > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/index.html> > > > CI Bug Log - changes from CI_DRM_15034_full -> IGTPW_11372_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_11372_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11372_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_11372/index.html > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_11372_full: > > > IGT changes > > > Possible regressions > > * igt@gem_eio@in-flight-contexts-1us: > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb6/igt@gem_eio@in-flight-contexts-1us.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb4/igt@gem_eio@in-flight-contexts-1us.html> Not related to the change. Change is connected with device selection/filtering, so either wrong or no device issue would be hit, which does not happen in this and any other tests. Regards, marcin > > > Known issues > > Here are the changes found in IGTPW_11372_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@object-reloc-keep-cache: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > * > > igt@device_reset@cold-reset-bound: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@device_reset@cold-reset-bound.html> (i915#11078 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) > * > > igt@device_reset@unbind-reset-rebind: > > o shard-dg1: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html> (i915#9413 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413>) > * > > igt@drm_fdinfo@all-busy-idle-check-all: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@drm_fdinfo@all-busy-idle-check-all.html> (i915#8414 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) > * > > igt@drm_fdinfo@most-busy-check-all@bcs0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@drm_fdinfo@most-busy-check-all@bcs0.html> (i915#8414 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +10 other tests skip > * > > igt@gem_basic@multigpu-create-close: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_basic@multigpu-create-close.html> (i915#7697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_busy@semaphore: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@gem_busy@semaphore.html> (i915#3936 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936>) > * > > igt@gem_ccs@block-multicopy-inplace: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) +1 other test skip > * > > igt@gem_close_race@multigpu-basic-process: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html> (i915#7697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html> (i915#7697 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_ctx_exec@basic-nohangcheck: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268>) > * > > igt@gem_ctx_persistence@engines-hang: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb7/igt@gem_ctx_persistence@engines-hang.html> (i915#1099 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099>) > * > > igt@gem_ctx_persistence@hang: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_ctx_persistence@hang.html> (i915#8555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_persistence@heartbeat-many: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html> (i915#8555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) > * > > igt@gem_ctx_sseu@invalid-sseu: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html> (i915#280 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_exec_balancer@bonded-sync: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html> (i915#4771 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) +1 other test skip > * > > igt@gem_exec_balancer@bonded-true-hang: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html> (i915#4812 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_balancer@parallel-keep-in-fence: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +1 other test skip > * > > igt@gem_exec_capture@capture@vecs0-lmem0: > > o shard-dg1: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_capture@capture@vecs0-lmem0.html> (i915#10386 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10386>) +1 other test fail > * > > igt@gem_exec_fair@basic-deadline: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-2/igt@gem_exec_fair@basic-deadline.html> (i915#4473 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473> / i915#4771 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@gem_exec_fair@basic-deadline.html> (i915#3539 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk7/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) +2 other tests fail > * > > igt@gem_exec_fence@submit3: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_fence@submit3.html> (i915#4812 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip > * > > igt@gem_exec_flush@basic-uc-prw-default: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html> (i915#3539 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) +1 other test skip > * > > igt@gem_exec_flush@basic-uc-rw-default: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html> (i915#3539 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip > * > > igt@gem_exec_reloc@basic-active: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-7/igt@gem_exec_reloc@basic-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +1 other test skip > * > > igt@gem_exec_reloc@basic-concurrent0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +10 other tests skip > * > > igt@gem_exec_reloc@basic-gtt-wc-noreloc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +7 other tests skip > * > > igt@gem_fence_thrash@bo-copy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html> (i915#4860 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) > * > > igt@gem_fenced_exec_thrash@no-spare-fences-busy: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html> (i915#4860 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +4 other tests skip > * > > igt@gem_lmem_evict@dontneed-evict-race: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> / i915#7582 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) > * > > igt@gem_lmem_swapping@basic@lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html> (i915#10378 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378>) > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@massive: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@gem_lmem_swapping@massive.html> (i915#4613 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip > * > > igt@gem_lmem_swapping@verify-random-ccs@lmem0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html> (i915#4565 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) > * > > igt@gem_mmap_gtt@medium-copy-odd: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_mmap_gtt@medium-copy-odd.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +18 other tests skip > * > > igt@gem_mmap_wc@close: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_mmap_wc@close.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +6 other tests skip > * > > igt@gem_mmap_wc@set-cache-level: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@gem_mmap_wc@set-cache-level.html> (i915#4083 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > * > > igt@gem_partial_pwrite_pread@reads-uncached: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +3 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-uncached.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_partial_pwrite_pread@writes-after-reads: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +5 other tests skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html> (i915#3282 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +4 other tests skip > * > > igt@gem_pxp@regular-baseline-src-copy-readible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html> (i915#4270 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +3 other tests skip > * > > igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> (i915#4270 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +3 other tests skip > * > > igt@gem_pxp@verify-pxp-stale-buf-optout-execution: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html> (i915#4270 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > * > > igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +1 other test skip > * > > igt@gem_set_tiling_vs_gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html> (i915#4079 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip > * > > igt@gem_userptr_blits@sd-probe: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4958 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>) > * > > igt@gem_userptr_blits@unsync-unmap-cycles: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gen9_exec_parse@batch-invalid-length: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@gen9_exec_parse@batch-invalid-length.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +2 other tests skip > * > > igt@gen9_exec_parse@bb-oversize: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html> (i915#2527 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +3 other tests skip > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / i915#10887 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > * > > igt@i915_pm_freq_mult@media-freq@gt0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html> (i915#6590 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: > > o shard-dg1: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> (i915#3591 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591>) > * > > igt@i915_pm_rps@thresholds-idle-park@gt0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park@gt0.html> (i915#8925 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925>) > * > > igt@i915_pm_sseu@full-enable: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@i915_pm_sseu@full-enable.html> (i915#4387 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > * > > igt@i915_query@query-topology-coherent-slice-mask: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html> (i915#6188 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188>) > * > > igt@i915_query@test-query-geometry-subslices: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html> (i915#5723 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) > * > > igt@i915_selftest@mock@memory_region: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk4/igt@i915_selftest@mock@memory_region.html> (i915#9311 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>) > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html> (i915#10031 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031> / i915#11279 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279>) > * > > igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> (i915#4212 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) +1 other test skip > * > > igt@kms_addfb_basic@addfb25-x-tiled-legacy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> (i915#4212 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html> (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +7 other tests skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-rc-ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-rc-ccs.html> (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +1 other test skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html> (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +11 other tests skip > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html> (i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +9 other tests skip > * > > igt@kms_big_fb@linear-32bpp-rotate-90: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +2 other tests skip > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> (i915#3638 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip > * > > igt@kms_big_fb@y-tiled-addfb-size-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +1 other test skip > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html> (i915#4538 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +5 other tests skip > * > > igt@kms_big_joiner@basic: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_big_joiner@basic.html> (i915#10656 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_big_joiner@basic-force-joiner: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_big_joiner@basic-force-joiner.html> (i915#10656 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) > * > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +91 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html> (i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +49 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +156 other tests skip > * > > igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html> (i915#10307 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#3742 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_cdclk@plane-scaling@pipe-d-dp-4: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html> (i915#4087 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +3 other tests skip > * > > igt@kms_chamelium_color@degamma: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_chamelium_color@degamma.html> +7 other tests skip > * > > igt@kms_chamelium_edid@dp-edid-change-during-suspend: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html> (i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +3 other tests skip > * > > igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html> (i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +9 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd.html> (i915#7828 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +11 other tests skip > * > > igt@kms_content_protection@atomic-dpms: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html> (i915#7116 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@content-type-change: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_content_protection@content-type-change.html> (i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@dp-mst-type-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html> (i915#3299 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > * > > igt@kms_content_protection@mei-interface: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_content_protection@mei-interface.html> (i915#9424 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) > * > > igt@kms_content_protection@srm: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_content_protection@srm.html> (i915#7118 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>) > * > > igt@kms_cursor_crc@cursor-onscreen-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +2 other tests skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-128x42: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html> (i915#8814 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x32: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +2 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-32x10: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-32x10.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +6 other tests skip > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) +2 other tests skip > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346>) > * > > igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_cursor_legacy@torture-move@pipe-a: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-9/igt@kms_cursor_legacy@torture-move@pipe-a.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-5/igt@kms_cursor_legacy@torture-move@pipe-a.html> (i915#10166 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166> / i915#1982 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982>) > * > > igt@kms_display_modes@extended-mode-basic: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +3 other tests skip > * > > igt@kms_dsc@dsc-basic: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_dsc@dsc-basic.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) +1 other test skip > * > > igt@kms_dsc@dsc-with-output-formats: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_feature_discovery@display-4x: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_feature_discovery@display-4x.html> (i915#1839 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > * > > igt@kms_flip@2x-plain-flip-ts-check-interruptible: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> (i915#9934 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +6 other tests skip > * > > igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> (i915#2122 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) > * > > igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a2: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_flip@flip-vs-absolute-wf_vblank@c-hdmi-a2.html> (i915#2122 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122>) +2 other tests fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +4 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html> +51 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html> (i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +7 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +14 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +30 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#8708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +7 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html> (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +17 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html> (i915#3023 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +23 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> (i915#1825 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +41 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +22 other tests skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html> +13 other tests skip > * > > igt@kms_hdr@invalid-hdr: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_hdr@invalid-hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-swap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@kms_hdr@static-swap.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> (i915#10159 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159>) > * > > igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html> (i915#1982 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982> / i915#8797 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797>) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_plane_scaling@intel-max-src-size.html> +31 other tests skip > * > > igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html> (i915#8292 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292>) > * > > igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: > > o shard-dg1: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html> (i915#8292 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html> (i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +7 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html> (i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +7 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176> / i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +1 other test skip > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html> (i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +7 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html> (i915#5235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235> / i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423> / i915#9728 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728>) +3 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +3 other tests skip > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +5 other tests skip > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-3.html> (i915#5235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +3 other tests skip > * > > igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235> / i915#9423 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +19 other tests skip > * > > igt@kms_pm_backlight@fade-with-dpms: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html> (i915#5354 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +1 other test skip > * > > igt@kms_pm_dc@dc3co-vpb-simulation: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@kms_pm_dc@dc3co-vpb-simulation.html> (i915#9685 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) +1 other test skip > * > > igt@kms_pm_dc@dc5-psr: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html> (i915#9685 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_pm_rpm@fences-dpms: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@fences-dpms.html> (i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +2 other tests skip > * > > igt@kms_pm_rpm@i2c: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_pm_rpm@i2c.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@kms_pm_rpm@i2c.html> (i915#8717 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717>) > * > > igt@kms_pm_rpm@modeset-lpsp-stress: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +1 other test skip > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_prime@d3hot: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_prime@d3hot.html> (i915#6524 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#11520 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +5 other tests skip > * > > igt@kms_psr2_su@frontbuffer-xrgb8888: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr@fbc-psr-cursor-render: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-render.html> (i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +2 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-blt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_psr@fbc-psr2-sprite-blt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip > * > > igt@kms_psr@pr-cursor-mmap-gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_psr@pr-cursor-mmap-gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +20 other tests skip > * > > igt@kms_psr@pr-cursor-plane-onoff: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_psr@pr-cursor-plane-onoff.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +19 other tests skip > * > > igt@kms_psr@psr-sprite-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr@psr-sprite-mmap-gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +1 other test skip > * > > igt@kms_psr@psr2-sprite-plane-onoff: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html> +169 other tests skip > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#5289 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other test skip > * > > igt@kms_scaling_modes@scaling-mode-full: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html> (i915#3555 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_setmode@basic@pipe-a-hdmi-a-1: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html> (i915#5465 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>) +1 other test fail > * > > igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html> (i915#9196 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) > * > > igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4.html> (i915#9196 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html> (i915#9906 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_writeback@writeback-check-output: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_writeback@writeback-check-output.html> (i915#2437 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) > * > > igt@kms_writeback@writeback-fb-id-xrgb2101010: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (i915#2437 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437> / i915#9412 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412>) +1 other test skip > * > > igt@perf@mi-rpc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@perf@mi-rpc.html> (i915#2434 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) > * > > igt@perf_pmu@rc6-all-gts: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html> (i915#8516 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) +1 other test skip > * > > igt@perf_pmu@rc6@other-idle-gt0: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-5/igt@perf_pmu@rc6@other-idle-gt0.html> (i915#8516 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) > * > > igt@prime_vgem@basic-fence-read: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-13/igt@prime_vgem@basic-fence-read.html> (i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@coherency-gtt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-14/igt@prime_vgem@coherency-gtt.html> (i915#3708 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@syncobj_timeline@invalid-wait-zero-handles: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-glk7/igt@syncobj_timeline@invalid-wait-zero-handles.html> (i915#9781 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>) > * > > igt@syncobj_wait@invalid-wait-zero-handles: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html> (i915#9781 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>) > > > Possible fixes > > * > > igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html> (i915#7297 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html> > * > > igt@gem_eio@kms: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@gem_eio@kms.html> (i915#5784 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-5/igt@gem_eio@kms.html> > * > > igt@gem_exec_fair@basic-deadline: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html> (i915#2846 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html> > * > > igt@gem_exec_fair@basic-pace-solo@rcs0: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html> > * > > igt@gem_lmem_swapping@heavy-random@lmem0: > > o shard-dg1: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html> (i915#10378 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg1-15/igt@gem_lmem_swapping@heavy-random@lmem0.html> > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-snb: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@kms_dp_aux_dev: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-6/igt@kms_dp_aux_dev.html> (i915#1257 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_dp_aux_dev.html> > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html> (i915#6880 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html> > * > > igt@kms_hdmi_inject@inject-audio: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_hdmi_inject@inject-audio.html> (i915#433 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_hdmi_inject@inject-audio.html> > * > > igt@kms_pm_dc@dc9-dpms: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html> (i915#4281 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html> > * > > igt@kms_pm_rpm@modeset-lpsp: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html> +1 other test pass > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html> (i915#9519 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html> +1 other test pass > * > > igt@kms_sysfs_edid_timing: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-2/igt@kms_sysfs_edid_timing.html> (IGT#2 <https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_sysfs_edid_timing.html> > * > > igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: > > o shard-snb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> (i915#9196 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html> > > > Warnings > > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html> (i915#10887 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#9820 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs: > > o shard-mtlp: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-mtlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-4-mc-ccs.html> (i915#8709 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) > * > > igt@kms_cursor_crc@cursor-offscreen-512x170: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#11453 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) +2 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#10433 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +2 other tests skip > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4070 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070> / i915#4816 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816>) > * > > igt@kms_psr@fbc-psr-primary-page-flip: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-6/igt@kms_psr@fbc-psr-primary-page-flip.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +11 other tests skip > * > > igt@kms_psr@psr-cursor-mmap-cpu: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html> (i915#1072 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +18 other tests skip > * > > igt@kms_rotation_crc@primary-rotation-270: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#4235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>) +1 other test skip > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#4235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#5190 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (i915#11131 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#4235 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235>) +2 other tests skip > * > > igt@perf@non-zero-reason@0-rcs0: > > o shard-dg2: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15034/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html> (i915#9100 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11372/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html> (i915#7484 <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484>) > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7916 -> IGTPW_11372 > > CI-20190529: 20190529 > CI_DRM_15034: 55e18f9be7b75c5226a57eff4a3b3eb6110815c6 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_11372: 11372 > IGT_7916: 971cfc9d6afc8242db25d1eabd4ae00890d9144a @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz ` (3 preceding siblings ...) 2024-07-05 7:59 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-07-08 6:58 ` Zbigniew Kempczyński 4 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2024-07-08 6:58 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev, kamil.konieczny, michal.wajdeczko On Thu, Jul 04, 2024 at 06:44:37PM +0200, Marcin Bernatowicz wrote: > Skip attributes in subdirectories as they are not used for filtering. > This change improves speed and reduces the impact of non-DRM related > component bugs on testing, such as ASPM issues. > > Rename function is_on_blacklist to is_on_blocklist to promote more > inclusive language. > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > --- > lib/igt_device_scan.c | 16 +++++++++------- > 1 file changed, 9 insertions(+), 7 deletions(-) > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > index 9a2da3d62..6473ca7ad 100644 > --- a/lib/igt_device_scan.c > +++ b/lib/igt_device_scan.c > @@ -433,7 +433,7 @@ static enum dev_type __pci_devtype(uint16_t vendor, uint16_t device, const char > /* Reading sysattr values can take time (even seconds), > * we want to avoid reading such keys. > */ > -static bool is_on_blacklist(const char *what) > +static bool is_on_blocklist(const char *what) > { > static const char *keys[] = { "config", "modalias", "modes", > "resource", > @@ -442,16 +442,18 @@ static bool is_on_blacklist(const char *what) > "resource0_wc", "resource1_wc", "resource2_wc", > "resource3_wc", "resource4_wc", "resource5_wc", > "uevent", NULL}; > - const char *key; > - int i = 0; > + const char **key; > > if (what == NULL) > return false; > > - while ((key = keys[i++])) { > - if (strcmp(key, what) == 0) > + /* Skip attributes in subdirectories */ > + if (strchr(what, '/') != NULL) > + return true; As we already drop some attributes I have nothing against further list expanding. I've checked what attributes I see on 'lsgpu -p' on devices I have an access to and it is mostly 'power/*'. Only doubt I have is if someone is using this for its scripting but we can revert this change then. So from me: Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > + > + for (key = keys; *key; key++) > + if (strcmp(*key, what) == 0) > return true; > - } > > return false; > > @@ -553,7 +555,7 @@ static void get_attrs(struct udev_device *dev, struct igt_device *idev) > const char *key = udev_list_entry_get_name(entry); > const char *value; > > - if (is_on_blacklist(key)) { > + if (is_on_blocklist(key)) { > entry = udev_list_entry_get_next(entry); > continue; > } > -- > 2.31.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-07-08 6:58 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-04 16:44 [PATCH i-g-t] lib/igt_device_scan: Skip attributes in subdirectories Marcin Bernatowicz 2024-07-04 18:51 ` ✓ CI.xeBAT: success for " Patchwork 2024-07-04 19:01 ` ✓ Fi.CI.BAT: " Patchwork 2024-07-05 0:27 ` ✗ CI.xeFULL: failure " Patchwork 2024-07-05 9:38 ` Bernatowicz, Marcin 2024-07-05 7:59 ` ✗ Fi.CI.IGT: " Patchwork 2024-07-05 10:08 ` Bernatowicz, Marcin 2024-07-08 6:58 ` [PATCH i-g-t] " Zbigniew Kempczyński
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox