* [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib
@ 2025-06-23 18:14 Alex Hung
2025-06-23 18:45 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Alex Hung @ 2025-06-23 18:14 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, harry.wentland, Alex Hung
From: Harry Wentland <harry.wentland@amd.com>
This function can be used by other tests that need writeback. A prefix
"igt_" is also added to the function name.
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_kms.c | 25 +++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
tests/kms_writeback.c | 21 +--------------------
3 files changed, 28 insertions(+), 20 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 9ee03e870..085c3f430 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -7472,3 +7472,28 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c
return 0;
}
+
+/**
+ * igt_get_writeback_formats_blob:
+ * @output: Target output
+ *
+ * get supported formats from the writeback connector
+ */
+drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output)
+{
+ drmModePropertyBlobRes *blob = NULL;
+ uint64_t blob_id;
+ int ret;
+
+ ret = kmstest_get_property(output->display->drm_fd,
+ output->config.connector->connector_id,
+ DRM_MODE_OBJECT_CONNECTOR,
+ igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS],
+ NULL, &blob_id, NULL);
+ if (ret)
+ blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id);
+
+ igt_assert(blob);
+
+ return blob;
+}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index a85fee515..09d7d4414 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1281,4 +1281,6 @@ void igt_set_link_params(int drm_fd, igt_output_t *output,
int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
+drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
+
#endif /* __IGT_KMS_H__ */
diff --git a/tests/kms_writeback.c b/tests/kms_writeback.c
index 8765fda34..86afed509 100644
--- a/tests/kms_writeback.c
+++ b/tests/kms_writeback.c
@@ -92,25 +92,6 @@ enum {
XRGB2101010 = 1 << 1,
};
-static drmModePropertyBlobRes *get_writeback_formats_blob(igt_output_t *output)
-{
- drmModePropertyBlobRes *blob = NULL;
- uint64_t blob_id;
- int ret;
-
- ret = kmstest_get_property(output->display->drm_fd,
- output->config.connector->connector_id,
- DRM_MODE_OBJECT_CONNECTOR,
- igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS],
- NULL, &blob_id, NULL);
- if (ret)
- blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id);
-
- igt_assert(blob);
-
- return blob;
-}
-
static bool check_writeback_config(igt_display_t *display, igt_output_t *output,
drmModeModeInfo override_mode)
{
@@ -621,7 +602,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL)
const char *valid_chars;
igt_skip_on(data.dump_check || data.list_modes);
- formats_blob = get_writeback_formats_blob(output);
+ formats_blob = igt_get_writeback_formats_blob(output);
valid_chars = "01234568 ABCGNRUVXY";
/*
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Xe.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung @ 2025-06-23 18:45 ` Patchwork 2025-06-23 18:57 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-06-23 18:45 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 877 bytes --] == Series Details == Series: lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) URL : https://patchwork.freedesktop.org/series/150486/ State : success == Summary == CI Bug Log - changes from XEIGT_8422_BAT -> XEIGTPW_13339_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8422 -> IGTPW_13339 IGTPW_13339: 13339 IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3291-9ec4850b4b065a9a15957da0ed1bb3904d4a3b18: 9ec4850b4b065a9a15957da0ed1bb3904d4a3b18 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/index.html [-- Attachment #2: Type: text/html, Size: 1422 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung 2025-06-23 18:45 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) Patchwork @ 2025-06-23 18:57 ` Patchwork 2025-06-24 2:05 ` ✓ Xe.CI.Full: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-06-23 18:57 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3127 bytes --] == Series Details == Series: lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) URL : https://patchwork.freedesktop.org/series/150486/ State : success == Summary == CI Bug Log - changes from IGT_8422 -> IGTPW_13339 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): fi-ilk-650 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13339 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8422/bat-mtlp-9/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_selftest@live@hugepages: - bat-arlh-2: [PASS][3] -> [DMESG-FAIL][4] ([i915#14243]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8422/bat-arlh-2/igt@i915_selftest@live@hugepages.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/bat-arlh-2/igt@i915_selftest@live@hugepages.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8422/bat-dg2-14/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/bat-dg2-14/igt@i915_selftest@live@workarounds.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-ilk-650: NOTRUN -> [SKIP][7] +24 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/fi-ilk-650/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8422/bat-arls-5/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#14243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14243 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8422 -> IGTPW_13339 * Linux: CI_DRM_16743 -> CI_DRM_16744 CI-20190529: 20190529 CI_DRM_16743: 4d6ffa14a20201e284cfa94292fef8c73f618a90 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16744: 588c112d0eea7630f810039424a21cbca0ec8589 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13339: 13339 IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/index.html [-- Attachment #2: Type: text/html, Size: 3932 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.Full: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung 2025-06-23 18:45 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) Patchwork 2025-06-23 18:57 ` ✓ i915.CI.BAT: " Patchwork @ 2025-06-24 2:05 ` Patchwork 2025-06-24 4:14 ` ✗ i915.CI.Full: failure " Patchwork 2025-06-24 13:31 ` [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Kamil Konieczny 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-06-24 2:05 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 68865 bytes --] == Series Details == Series: lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) URL : https://patchwork.freedesktop.org/series/150486/ State : success == Summary == CI Bug Log - changes from XEIGT_8422_FULL -> XEIGTPW_13339_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Known issues ------------ Here are the changes found in XEIGTPW_13339_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#623]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-lnl: [PASS][2] -> [FAIL][3] ([Intel XE#827]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#911]) +7 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#316]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#607]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-lnl: [PASS][13] -> [ABORT][14] ([Intel XE#4760]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][15] -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#367]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#3432]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#787]) +153 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2907]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#3124]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#1727] / [Intel XE#3113]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#4417]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic: - shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#1178]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-435/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#307]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1188]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1424]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2291]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#309]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#1475]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#323]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2286]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1508]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#4302]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#4354]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@kms_dp_link_training@uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4354]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2244]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#455]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#776]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2373]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2316]) +10 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2316]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][69] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#886]) +4 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-ts-check@b-edp1: - shard-lnl: NOTRUN -> [FAIL][72] ([Intel XE#886]) +2 other tests fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-lnl: NOTRUN -> [FAIL][75] ([Intel XE#4683]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#651]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +12 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4141]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#656]) +16 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2312]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2311]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2313]) +14 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][88] -> [SKIP][89] ([Intel XE#1503]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1503]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2501]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#356]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4596]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#4596]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1129]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#3309]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#718]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1439] / [Intel XE#836]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2893]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1489]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1489]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4608]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-suspend@edp-1: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4609]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@kms_psr@fbc-psr2-suspend@edp-1.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3414] / [Intel XE#3904]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2413]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2883]) +2 other tests fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#4459]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1091] / [Intel XE#2849]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_ccs@suspend-resume: - shard-dg2-set2: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#4358]) +1 other test incomplete [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-432/igt@xe_ccs@suspend-resume.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_ccs@suspend-resume.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eu_stall@non-blocking-re-enable: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#5308]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_eu_stall@non-blocking-re-enable.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#4837]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#4837]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#4837]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html * igt@xe_evict@evict-beng-large-cm: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#688]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_evict@evict-beng-large-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2322]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1392]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1392]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: [PASS][126] -> [SKIP][127] ([Intel XE#1392]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null-rebind.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#288]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][129] -> [DMESG-WARN][130] ([Intel XE#3876]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-shared: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#4915]) +98 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-mmap-shared.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#4943]) +9 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +10 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#2541] / [Intel XE#3573]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#977]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-436/igt@xe_pat@pat-index-xe2.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2284]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_pm@d3cold-basic.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#4733]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#4733]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-cs-cycles: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#944]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#944]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#4130]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#4130]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@xe_sriov_auto_provisioning@fair-allocation.html - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#4130]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#3342]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@xe_sriov_flr@flr-each-isolation.html - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#3342]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@equal-throughput: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4351]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_sriov_scheduling@equal-throughput.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][147] ([Intel XE#4665]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@intel_hwmon@hwmon-write.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@intel_hwmon@hwmon-write.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][149] ([Intel XE#2291]) -> [PASS][150] +2 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][151] ([Intel XE#3009]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_dp_aux_dev.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][153] ([Intel XE#4294]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [SKIP][155] ([Intel XE#2316]) -> [PASS][156] +7 other tests pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][157] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][159] ([Intel XE#301]) -> [PASS][160] +12 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [INCOMPLETE][161] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_hdr@static-toggle: - shard-bmg: [SKIP][163] ([Intel XE#1503]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_hdr@static-toggle.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_hdr@static-toggle.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [SKIP][165] ([Intel XE#4596]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_setmode@basic@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][167] ([Intel XE#2883]) -> [PASS][168] +4 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-464/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][169] ([Intel XE#1435]) -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_universal_plane@universal-plane-functional: - shard-bmg: [DMESG-WARN][171] -> [PASS][172] +1 other test pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@kms_universal_plane@universal-plane-functional.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_universal_plane@universal-plane-functional.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][173] ([Intel XE#1392]) -> [PASS][174] +2 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_system_allocator@threads-many-new-nomemset: - shard-bmg: [FAIL][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-new-nomemset.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-new-nomemset.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: [DMESG-WARN][177] ([Intel XE#3876]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@xe_exec_threads@threads-hang-rebind-err.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_module_load@load: - shard-lnl: ([PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [SKIP][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204]) ([Intel XE#378]) -> ([PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-7/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-2/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-2/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-5/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-1/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-8/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-8/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-4/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-8/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-6/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-7/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-7/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-4/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-1/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-1/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-6/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-3/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-6/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-5/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-5/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-3/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-3/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-8/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-8/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-lnl-2/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-3/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-2/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-4/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-1/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-1/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-1/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-6/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-7/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-8/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-lnl-5/igt@xe_module_load@load.html - shard-bmg: ([PASS][230], [PASS][231], [PASS][232], [PASS][233], [SKIP][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255]) ([Intel XE#2457]) -> ([PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-7/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-7/igt@xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-7/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-3/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-3/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-1/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-3/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-8/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-1/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@xe_module_load@load.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][280] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][281] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][282] ([Intel XE#1178]) -> [SKIP][283] ([Intel XE#2341]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@kms_content_protection@lic-type-0.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][284] ([Intel XE#2341]) -> [FAIL][285] ([Intel XE#1178]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_content_protection@srm.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][286] ([Intel XE#2341]) -> [FAIL][287] ([Intel XE#1188]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_content_protection@uevent.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-3/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][288] ([Intel XE#2312]) -> [SKIP][289] ([Intel XE#2311]) +15 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][290] ([Intel XE#2311]) -> [SKIP][291] ([Intel XE#2312]) +26 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][292] ([Intel XE#4141]) -> [SKIP][293] ([Intel XE#2312]) +13 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][294] ([Intel XE#2312]) -> [SKIP][295] ([Intel XE#4141]) +8 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move: - shard-bmg: [SKIP][296] ([Intel XE#2312]) -> [SKIP][297] ([Intel XE#2313]) +11 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][298] ([Intel XE#2313]) -> [SKIP][299] ([Intel XE#2312]) +17 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][300] ([Intel XE#5021]) -> [SKIP][301] ([Intel XE#4596]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][302] ([Intel XE#1729]) -> [SKIP][303] ([Intel XE#362]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8422/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4358 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665 [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8422 -> IGTPW_13339 IGTPW_13339: 13339 IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3291-9ec4850b4b065a9a15957da0ed1bb3904d4a3b18: 9ec4850b4b065a9a15957da0ed1bb3904d4a3b18 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13339/index.html [-- Attachment #2: Type: text/html, Size: 78883 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung ` (2 preceding siblings ...) 2025-06-24 2:05 ` ✓ Xe.CI.Full: " Patchwork @ 2025-06-24 4:14 ` Patchwork 2025-06-24 13:31 ` [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Kamil Konieczny 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-06-24 4:14 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 119111 bytes --] == Series Details == Series: lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) URL : https://patchwork.freedesktop.org/series/150486/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16744_full -> IGTPW_13339_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13339_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13339_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_13339/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13339_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@kms: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@gem_eio@kms.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@gem_eio@kms.html * igt@i915_selftest@live@requests: - shard-rkl: [PASS][3] -> [DMESG-FAIL][4] +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-8/igt@i915_selftest@live@requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@i915_selftest@live@requests.html New tests --------- New tests have been introduced between CI_DRM_16744_full and IGTPW_13339_full: ### New IGT tests (3) ### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.98] s * igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [8.33] s * igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.78] s Known issues ------------ Here are the changes found in IGTPW_13339_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@device_reset@cold-reset-bound.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_basic@multigpu-create-close.html - shard-dg2-9: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2-9: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-internal-10ms: - shard-dg1: [PASS][26] -> [DMESG-WARN][27] ([i915#4423]) +2 other tests dmesg-warn [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-15/igt@gem_eio@in-flight-internal-10ms.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-14/igt@gem_eio@in-flight-internal-10ms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#5784]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-17/igt@gem_eio@reset-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2-9: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@sliced: - shard-rkl: [PASS][32] -> [DMESG-WARN][33] ([i915#12917] / [i915#12964]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@gem_exec_balancer@sliced.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible: - shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#6344]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-8/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-active: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-14/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu: - shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_exec_reloc@basic-cpu.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preemptive-hang: - shard-rkl: [PASS][44] -> [DMESG-WARN][45] ([i915#12964]) +33 other tests dmesg-warn [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-5/igt@gem_exec_schedule@preemptive-hang.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@gem_exec_schedule@preemptive-hang.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][50] ([i915#2190]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613] / [i915#7582]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk9/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-6/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#12193]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-2/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@isolation: - shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4077]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@gem_mmap_wc@copy.html - shard-dg2-9: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-1/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-14/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pread@exhaustion: - shard-tglu-1: NOTRUN -> [WARN][69] ([i915#2658]) +1 other test warn [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#3282]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [PASS][71] -> [TIMEOUT][72] ([i915#12917] / [i915#12964]) +2 other tests timeout [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-write: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4885]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4077]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#14123]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#11527]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-hang@vecs0: - shard-dg2-9: NOTRUN -> [SKIP][101] ([i915#14073]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@i915_drm_fdinfo@busy-hang@vecs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#14073]) +15 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-5/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#14118]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#14118]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#13786]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][106] ([i915#13790] / [i915#2681]) +1 other test warn [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][109] +12 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][110] -> [DMESG-FAIL][111] ([i915#12061]) +1 other test dmesg-fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#4817]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk9/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#7707]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@intel_hwmon@hwmon-read.html - shard-tglu: NOTRUN -> [SKIP][114] ([i915#7707]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#12454] / [i915#12712]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][118] ([i915#10991] / [i915#13335]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][119] ([i915#10991] / [i915#12518]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8709]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][122] -> [FAIL][123] ([i915#5956]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][124] ([i915#5956]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][125] +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#5286]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +9 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][131] +9 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][133] +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5190]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][142] +243 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#6095]) +24 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#6095]) +55 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#12796]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#12796] / [i915#14487]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [PASS][147] -> [INCOMPLETE][148] ([i915#12796]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6095]) +21 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +132 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +147 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#6095]) +64 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#6095]) +49 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#6095]) +29 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#13781]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +9 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2-9: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_content_protection@atomic.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#3299]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3116] / [i915#3299]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#7116] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9424]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#6944]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#13049]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#13049]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [PASS][178] -> [DMESG-FAIL][179] ([i915#12964]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: [PASS][180] -> [FAIL][181] ([i915#13566]) +2 other tests fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [PASS][185] -> [FAIL][186] ([i915#13566]) +3 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9809]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13046] / [i915#5354]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#13046] / [i915#5354]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#9067]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9833]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#13691]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3804]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#13707]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13707]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#13707]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8812]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#1839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-7/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#1839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#4881]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#9934]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-busy-flip: - shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#9934]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9934]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +12 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [PASS][212] -> [FAIL][213] ([i915#13734]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html - shard-snb: [PASS][214] -> [FAIL][215] ([i915#10826] / [i915#13734]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][216] ([i915#13734]) +3 other tests fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1: - shard-snb: [PASS][217] -> [FAIL][218] ([i915#10826]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-tglu: [PASS][219] -> [FAIL][220] ([i915#13734]) +2 other tests fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-tglu-10/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][221] ([i915#12745] / [i915#4839]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#12745]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][223] -> [FAIL][224] ([i915#13734]) +5 other tests fail [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: NOTRUN -> [FAIL][225] ([i915#13734]) +2 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-mtlp: [PASS][226] -> [FAIL][227] ([i915#13734]) +4 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-mtlp-2/igt@kms_flip@plain-flip-ts-check-interruptible.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: [PASS][228] -> [FAIL][229] ([i915#11832] / [i915#13734]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3: - shard-dg2: [PASS][230] -> [FAIL][231] ([i915#13734]) +5 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html - shard-dg1: [PASS][232] -> [FAIL][233] ([i915#13734]) +2 other tests fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-13/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#5190]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#8813]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#2672]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][249] ([i915#6880]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8708]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#8708]) +19 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#1825]) +14 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: NOTRUN -> [SKIP][253] +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8708]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [PASS][255] -> [FAIL][256] ([i915#6880]) +2 other tests fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3458]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +21 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#5354]) +9 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#8708]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#5439]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3023]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#3458]) +7 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#10433] / [i915#3458]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][265] +37 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#1825]) +8 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#3458]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][268] +84 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@kms_hdr@static-toggle.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#13688]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#10656]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#12339]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#13522]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][275] +8 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][276] ([i915#10647] / [i915#12169]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][277] ([i915#10647]) +1 other test fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#14259]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#6953]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#12247]) +18 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#12247]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#9423]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12247]) +11 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247]) +4 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#6953]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#12343]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#9812]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#9685]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#8430]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#9519]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#9519]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][293] -> [SKIP][294] ([i915#9519]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#9519]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg2-9: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#6524]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html - shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#6524] / [i915#6805]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#6524] / [i915#6805]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#9808]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#11520]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +5 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][304] ([i915#11520]) +8 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#12316]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][306] ([i915#11520]) +4 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#11520]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#11520]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#11520]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#4348]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-basic: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9732]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9688]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-7/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#1072] / [i915#9732]) +17 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-1/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9732]) +17 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr@psr-basic: - shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +7 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +5 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9685]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9685]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2-9: NOTRUN -> [SKIP][320] ([i915#4235]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12755]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#3555]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-mtlp: NOTRUN -> [ABORT][324] ([i915#13179]) +1 other test abort [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: [PASS][325] -> [FAIL][326] ([i915#5465]) +2 other tests fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb5/igt@kms_setmode@basic.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb2/igt@kms_setmode@basic.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][327] -> [FAIL][328] ([i915#9196]) +1 other test fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flipline: - shard-dg2-9: NOTRUN -> [SKIP][329] ([i915#3555]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#11920]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9906]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@kms_vrr@max-min.html - shard-dg2-9: NOTRUN -> [SKIP][332] ([i915#9906]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][333] -> [SKIP][334] ([i915#3555] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@kms_vrr@negative-basic.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9906]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2-9: NOTRUN -> [SKIP][337] ([i915#2437]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#2437]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][339] ([i915#2437]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#2437]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2437] / [i915#9412]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@blocking-parameterized: - shard-rkl: NOTRUN -> [DMESG-WARN][342] ([i915#12964]) +4 other tests dmesg-warn [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@perf@blocking-parameterized.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#2436]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#2434]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@frequency: - shard-dg2: [PASS][345] -> [FAIL][346] ([i915#12549] / [i915#6806]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@perf_pmu@frequency.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@perf_pmu@frequency.html - shard-dg1: [PASS][347] -> [FAIL][348] ([i915#12549] / [i915#6806]) +1 other test fail [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-16/igt@perf_pmu@frequency.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@perf_pmu@frequency.html * igt@perf_pmu@module-unload: - shard-tglu: NOTRUN -> [FAIL][349] ([i915#14433]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@perf_pmu@module-unload.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2-9: NOTRUN -> [SKIP][350] ([i915#14121]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#3708]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][352] ([i915#12910]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#9917]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][354] ([i915#12910]) +8 other tests fail [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html * igt@tools_test@sysfs_l3_parity: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#4818]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][356] ([i915#12964]) -> [PASS][357] +51 other tests pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-5/igt@gem_eio@in-flight-suspend.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][358] ([i915#13363]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-tglu-5/igt@gem_eio@kms.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-2/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][360] ([i915#5784]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-13/igt@gem_eio@unwedge-stress.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][362] ([i915#5493]) -> [PASS][363] +1 other test pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [TIMEOUT][364] ([i915#5493]) -> [PASS][365] +1 other test pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [TIMEOUT][366] ([i915#12964]) -> [PASS][367] +1 other test pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [TIMEOUT][368] ([i915#12917] / [i915#12964]) -> [PASS][369] +2 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][370] -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@i915_module_load@resize-bar.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@i915_module_load@resize-bar.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg1: [DMESG-WARN][372] ([i915#4423]) -> [PASS][373] +10 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][374] ([i915#13566]) -> [PASS][375] +3 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][376] ([i915#13566]) -> [PASS][377] +5 other tests pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [FAIL][378] ([i915#13734]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate.html - shard-rkl: [FAIL][380] ([i915#10826] / [i915#11832] / [i915#13734]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1: - shard-rkl: [FAIL][382] ([i915#10826]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [FAIL][384] ([i915#13734]) -> [PASS][385] +3 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1: - shard-rkl: [FAIL][386] ([i915#13734]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][388] ([i915#6880]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][390] ([i915#3555] / [i915#8228]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_lease@simple-lease@pipe-a-hdmi-a-4: - shard-dg1: [ABORT][392] ([i915#4423]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_lease@simple-lease@pipe-a-hdmi-a-4.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@kms_lease@simple-lease@pipe-a-hdmi-a-4.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][394] ([i915#9519]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-glk: [FAIL][396] ([i915#8717]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-glk1/igt@kms_pm_rpm@i2c.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-glk9/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [SKIP][398] ([i915#9519]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-caching: - shard-rkl: [SKIP][400] ([i915#12916]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-3/igt@kms_pm_rpm@pm-caching.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-7/igt@kms_pm_rpm@pm-caching.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][402] ([i915#5465]) -> [PASS][403] +2 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-tglu-10/igt@kms_setmode@basic.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-tglu-6/igt@kms_setmode@basic.html - shard-rkl: [FAIL][404] ([i915#5465]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_setmode@basic.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][406] ([i915#5465]) -> [PASS][407] +2 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [FAIL][408] ([i915#11943]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [FAIL][410] ([i915#11943]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][412] ([i915#4349]) -> [PASS][413] +3 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][414] ([i915#4349]) -> [PASS][415] +5 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][416] ([i915#13717]) -> [TIMEOUT][417] ([i915#12917] / [i915#12964]) +1 other test timeout [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@i915_module_load@reload-no-display: - shard-snb: [DMESG-WARN][418] -> [ABORT][419] ([i915#11703]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-snb4/igt@i915_module_load@reload-no-display.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-snb6/igt@i915_module_load@reload-no-display.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][420] ([i915#14098] / [i915#6095]) -> [SKIP][421] ([i915#6095]) +8 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][422] ([i915#6095]) -> [SKIP][423] ([i915#14098] / [i915#6095]) +7 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][424] ([i915#4423] / [i915#6095]) -> [SKIP][425] ([i915#6095]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: [SKIP][426] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][427] ([i915#11151] / [i915#7828]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [FAIL][428] ([i915#7173]) -> [SKIP][429] ([i915#9424]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@kms_content_protection@lic-type-0.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg1: [SKIP][430] ([i915#13049] / [i915#4423]) -> [SKIP][431] ([i915#13049]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg1: [SKIP][432] ([i915#4423] / [i915#9934]) -> [SKIP][433] ([i915#9934]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][434] ([i915#4423] / [i915#8708]) -> [SKIP][435] ([i915#8708]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][436] ([i915#3458]) -> [SKIP][437] ([i915#10433] / [i915#3458]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: [SKIP][438] ([i915#3458]) -> [SKIP][439] ([i915#3458] / [i915#4423]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][440] ([i915#4423]) -> [SKIP][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][442] ([i915#10433] / [i915#3458]) -> [SKIP][443] ([i915#3458]) +4 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][444] ([i915#13331]) -> [SKIP][445] ([i915#12713]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][446] ([i915#1187] / [i915#12713]) -> [SKIP][447] ([i915#12713]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][448] ([i915#4281]) -> [SKIP][449] ([i915#3361]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][450] ([i915#3828]) -> [SKIP][451] ([i915#9340]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg1: [SKIP][452] ([i915#11520] / [i915#4423]) -> [SKIP][453] ([i915#11520]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg1: [SKIP][454] ([i915#11520]) -> [SKIP][455] ([i915#11520] / [i915#4423]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-13/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-16/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-dg1: [SKIP][456] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][457] ([i915#1072] / [i915#9732]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16744/shard-dg1-14/igt@kms_psr@psr2-sprite-plane-onoff.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/shard-dg1-17/igt@kms_psr@psr2-sprite-plane-onoff.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14487]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14487 [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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [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#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#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#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [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#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [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#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8422 -> IGTPW_13339 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16744: 588c112d0eea7630f810039424a21cbca0ec8589 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13339: 13339 IGT_8422: 9b9c9136b17a2ed0680fb9589d51446c03698b37 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13339/index.html [-- Attachment #2: Type: text/html, Size: 151564 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung ` (3 preceding siblings ...) 2025-06-24 4:14 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-06-24 13:31 ` Kamil Konieczny 2025-06-24 22:19 ` Alex Hung 4 siblings, 1 reply; 7+ messages in thread From: Kamil Konieczny @ 2025-06-24 13:31 UTC (permalink / raw) To: Alex Hung; +Cc: igt-dev, harry.wentland, Karthik B S Hi Alex, On 2025-06-23 at 12:14:40 -0600, Alex Hung wrote: > From: Harry Wentland <harry.wentland@amd.com> > > This function can be used by other tests that need writeback. A prefix > "igt_" is also added to the function name. > > Signed-off-by: Alex Hung <alex.hung@amd.com> > Signed-off-by: Harry Wentland <harry.wentland@amd.com> > --- > lib/igt_kms.c | 25 +++++++++++++++++++++++++ > lib/igt_kms.h | 2 ++ > tests/kms_writeback.c | 21 +-------------------- > 3 files changed, 28 insertions(+), 20 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 9ee03e870..085c3f430 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -7472,3 +7472,28 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c > > return 0; > } > + > +/** > + * igt_get_writeback_formats_blob: > + * @output: Target output > + * > + * get supported formats from the writeback connector Document here when this could assert (or not) also document when return value could be NULL > + */ > +drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output) > +{ > + drmModePropertyBlobRes *blob = NULL; > + uint64_t blob_id; > + int ret; > + > + ret = kmstest_get_property(output->display->drm_fd, > + output->config.connector->connector_id, > + DRM_MODE_OBJECT_CONNECTOR, > + igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS], > + NULL, &blob_id, NULL); > + if (ret) > + blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); > + > + igt_assert(blob); Please remove assert from here, or at least move it iside 'if': if (ret) { blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); igt_assert(blob); } Or provide second function __igt_get_writeback_formats_blob without any asserts, see note about writing library functions in CONTRIBUTING.md Or it could be merged as is now and improved later on? +cc Karthik Cc: Karthik B S <karthik.b.s@intel.com> Regards, Kamil > + > + return blob; > +} > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index a85fee515..09d7d4414 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1281,4 +1281,6 @@ void igt_set_link_params(int drm_fd, igt_output_t *output, > int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context); > int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context); > > +drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output); > + > #endif /* __IGT_KMS_H__ */ > diff --git a/tests/kms_writeback.c b/tests/kms_writeback.c > index 8765fda34..86afed509 100644 > --- a/tests/kms_writeback.c > +++ b/tests/kms_writeback.c > @@ -92,25 +92,6 @@ enum { > XRGB2101010 = 1 << 1, > }; > > -static drmModePropertyBlobRes *get_writeback_formats_blob(igt_output_t *output) > -{ > - drmModePropertyBlobRes *blob = NULL; > - uint64_t blob_id; > - int ret; > - > - ret = kmstest_get_property(output->display->drm_fd, > - output->config.connector->connector_id, > - DRM_MODE_OBJECT_CONNECTOR, > - igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS], > - NULL, &blob_id, NULL); > - if (ret) > - blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); > - > - igt_assert(blob); > - > - return blob; > -} > - > static bool check_writeback_config(igt_display_t *display, igt_output_t *output, > drmModeModeInfo override_mode) > { > @@ -621,7 +602,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) > const char *valid_chars; > > igt_skip_on(data.dump_check || data.list_modes); > - formats_blob = get_writeback_formats_blob(output); > + formats_blob = igt_get_writeback_formats_blob(output); > valid_chars = "01234568 ABCGNRUVXY"; > > /* > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib 2025-06-24 13:31 ` [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Kamil Konieczny @ 2025-06-24 22:19 ` Alex Hung 0 siblings, 0 replies; 7+ messages in thread From: Alex Hung @ 2025-06-24 22:19 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, harry.wentland, Karthik B S On 6/24/25 07:31, Kamil Konieczny wrote: > Hi Alex, > On 2025-06-23 at 12:14:40 -0600, Alex Hung wrote: >> From: Harry Wentland <harry.wentland@amd.com> >> >> This function can be used by other tests that need writeback. A prefix >> "igt_" is also added to the function name. >> >> Signed-off-by: Alex Hung <alex.hung@amd.com> >> Signed-off-by: Harry Wentland <harry.wentland@amd.com> >> --- >> lib/igt_kms.c | 25 +++++++++++++++++++++++++ >> lib/igt_kms.h | 2 ++ >> tests/kms_writeback.c | 21 +-------------------- >> 3 files changed, 28 insertions(+), 20 deletions(-) >> >> diff --git a/lib/igt_kms.c b/lib/igt_kms.c >> index 9ee03e870..085c3f430 100644 >> --- a/lib/igt_kms.c >> +++ b/lib/igt_kms.c >> @@ -7472,3 +7472,28 @@ int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *c >> >> return 0; >> } >> + >> +/** >> + * igt_get_writeback_formats_blob: >> + * @output: Target output >> + * >> + * get supported formats from the writeback connector > > Document here when this could assert (or not) > also document when return value could be NULL Updated in V3 > >> + */ >> +drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output) >> +{ >> + drmModePropertyBlobRes *blob = NULL; >> + uint64_t blob_id; >> + int ret; >> + >> + ret = kmstest_get_property(output->display->drm_fd, >> + output->config.connector->connector_id, >> + DRM_MODE_OBJECT_CONNECTOR, >> + igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS], >> + NULL, &blob_id, NULL); >> + if (ret) >> + blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); >> + >> + igt_assert(blob); > > Please remove assert from here, or at least move it iside 'if': > > if (ret) { > blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); > igt_assert(blob); > } > > Or provide second function __igt_get_writeback_formats_blob > without any asserts, see note about writing library functions > in CONTRIBUTING.md igt_assert is removed in V3. Thanks. > > Or it could be merged as is now and improved later on? > +cc Karthik > > Cc: Karthik B S <karthik.b.s@intel.com>> > Regards, > Kamil > >> + >> + return blob; >> +} >> diff --git a/lib/igt_kms.h b/lib/igt_kms.h >> index a85fee515..09d7d4414 100644 >> --- a/lib/igt_kms.h >> +++ b/lib/igt_kms.h >> @@ -1281,4 +1281,6 @@ void igt_set_link_params(int drm_fd, igt_output_t *output, >> int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context); >> int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context); >> >> +drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output); >> + >> #endif /* __IGT_KMS_H__ */ >> diff --git a/tests/kms_writeback.c b/tests/kms_writeback.c >> index 8765fda34..86afed509 100644 >> --- a/tests/kms_writeback.c >> +++ b/tests/kms_writeback.c >> @@ -92,25 +92,6 @@ enum { >> XRGB2101010 = 1 << 1, >> }; >> >> -static drmModePropertyBlobRes *get_writeback_formats_blob(igt_output_t *output) >> -{ >> - drmModePropertyBlobRes *blob = NULL; >> - uint64_t blob_id; >> - int ret; >> - >> - ret = kmstest_get_property(output->display->drm_fd, >> - output->config.connector->connector_id, >> - DRM_MODE_OBJECT_CONNECTOR, >> - igt_connector_prop_names[IGT_CONNECTOR_WRITEBACK_PIXEL_FORMATS], >> - NULL, &blob_id, NULL); >> - if (ret) >> - blob = drmModeGetPropertyBlob(output->display->drm_fd, blob_id); >> - >> - igt_assert(blob); >> - >> - return blob; >> -} >> - >> static bool check_writeback_config(igt_display_t *display, igt_output_t *output, >> drmModeModeInfo override_mode) >> { >> @@ -621,7 +602,7 @@ igt_main_args("b:c:f:dl", long_options, help_str, opt_handler, NULL) >> const char *valid_chars; >> >> igt_skip_on(data.dump_check || data.list_modes); >> - formats_blob = get_writeback_formats_blob(output); >> + formats_blob = igt_get_writeback_formats_blob(output); >> valid_chars = "01234568 ABCGNRUVXY"; >> >> /* >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-06-24 22:19 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-23 18:14 [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Alex Hung 2025-06-23 18:45 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Move get_writeback_formats_blob to lib (rev2) Patchwork 2025-06-23 18:57 ` ✓ i915.CI.BAT: " Patchwork 2025-06-24 2:05 ` ✓ Xe.CI.Full: " Patchwork 2025-06-24 4:14 ` ✗ i915.CI.Full: failure " Patchwork 2025-06-24 13:31 ` [PATCH][V2] lib/igt_kms: Move get_writeback_formats_blob to lib Kamil Konieczny 2025-06-24 22:19 ` Alex Hung
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.