* [PATCH i-g-t] tests/kms_properties: drop immutability checks
@ 2024-07-17 14:39 Dmitry Baryshkov
2024-07-17 16:21 ` ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Dmitry Baryshkov @ 2024-07-17 14:39 UTC (permalink / raw)
To: igt-dev; +Cc: Maxime Ripard, Ville Syrjälä
Following the discussion on IRC, it is actually an error to require that
properties that can not be chaged are marked as immutable.
First of all, it creates inconsistent uAPI. Some drivers might have an
immutable property, while others will have it mutable. Yes, there are
known examples for such behaviour (e.g. zpos), but they are clearly
documented in this way.
Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines
more of the 'direction' of the property (whether it is set by the kernel
or it is expected to be set by the userspace) rather than simply states
that there is no way for the userspace to change the property.
Drop the single-value-is-immutable tests.
Fixes: 29ae12bd764e ("tests/kms_properties: Validate properties harder")
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://oftc.irclog.whitequark.org/dri-devel/2024-07-16#33374622
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
tests/kms_properties.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index c0e5be1c90a8..c41b88bef76f 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -421,11 +421,9 @@ static void validate_range_prop(const struct drm_mode_get_property *prop,
{
const uint64_t *values = from_user_pointer(prop->values_ptr);
bool is_unsigned = prop->flags & DRM_MODE_PROP_RANGE;
- bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE;
igt_assert_eq(prop->count_values, 2);
igt_assert_eq(prop->count_enum_blobs, 0);
- igt_assert(values[0] != values[1] || immutable);
if (is_unsigned) {
igt_assert_lte_u64(values[0], values[1]);
@@ -461,12 +459,10 @@ static void validate_enum_prop(const struct drm_mode_get_property *prop,
uint64_t value)
{
const uint64_t *values = from_user_pointer(prop->values_ptr);
- bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE;
int i;
igt_assert_lte(1, prop->count_values);
igt_assert_eq(prop->count_enum_blobs, prop->count_values);
- igt_assert(prop->count_values != 1 || immutable);
for (i = 0; i < prop->count_values; i++) {
if (value == values[i])
@@ -481,12 +477,10 @@ static void validate_bitmask_prop(const struct drm_mode_get_property *prop,
uint64_t value)
{
const uint64_t *values = from_user_pointer(prop->values_ptr);
- bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE;
uint64_t mask = 0;
igt_assert_lte(1, prop->count_values);
igt_assert_eq(prop->count_enum_blobs, prop->count_values);
- igt_assert(prop->count_values != 1 || immutable);
for (int i = 0; i < prop->count_values; i++) {
igt_assert_lte_u64(values[i], 63);
@@ -535,7 +529,6 @@ static void validate_object_prop(int fd,
uint64_t value)
{
const uint64_t *values = from_user_pointer(prop->values_ptr);
- bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE;
struct drm_mode_crtc crtc;
struct drm_mode_fb_cmd fb;
@@ -543,7 +536,6 @@ static void validate_object_prop(int fd,
igt_assert_eq(prop->count_enum_blobs, 0);
igt_assert_lte_u64(value, 0xffffffff);
- igt_assert(!immutable || value != 0);
switch (values[0]) {
case DRM_MODE_OBJECT_CRTC:
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* ✓ Fi.CI.BAT: success for tests/kms_properties: drop immutability checks 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov @ 2024-07-17 16:21 ` Patchwork 2024-07-17 16:22 ` ✗ CI.xeBAT: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-07-17 16:21 UTC (permalink / raw) To: Dmitry Baryshkov; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1930 bytes --] == Series Details == Series: tests/kms_properties: drop immutability checks URL : https://patchwork.freedesktop.org/series/136199/ State : success == Summary == CI Bug Log - changes from IGT_7928 -> IGTPW_11421 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11421 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-arls-5: NOTRUN -> [INCOMPLETE][1] ([i915#11320]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/bat-arls-5/igt@kms_pipe_crc_basic@nonblocking-crc.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-arls-2: [DMESG-WARN][2] ([i915#7507]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [i915#11320]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11320 [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7928 -> IGTPW_11421 CI-20190529: 20190529 CI_DRM_15086: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11421: a4d5d82f20da63d7155124558c7a300daf5295dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/index.html [-- Attachment #2: Type: text/html, Size: 2541 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_properties: drop immutability checks 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov 2024-07-17 16:21 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-07-17 16:22 ` Patchwork 2024-07-17 22:02 ` ✓ CI.xeFULL: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-07-17 16:22 UTC (permalink / raw) To: Dmitry Baryshkov; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1813 bytes --] == Series Details == Series: tests/kms_properties: drop immutability checks URL : https://patchwork.freedesktop.org/series/136199/ State : failure == Summary == CI Bug Log - changes from XEIGT_7928_BAT -> XEIGTPW_11421_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11421_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11421_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11421_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr: - bat-pvc-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr.html Build changes ------------- * IGT: IGT_7928 -> IGTPW_11421 IGTPW_11421: a4d5d82f20da63d7155124558c7a300daf5295dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/index.html [-- Attachment #2: Type: text/html, Size: 2395 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeFULL: success for tests/kms_properties: drop immutability checks 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov 2024-07-17 16:21 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-07-17 16:22 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-07-17 22:02 ` Patchwork 2024-07-18 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-07-18 10:00 ` [PATCH i-g-t] " Daniel Vetter 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-07-17 22:02 UTC (permalink / raw) To: Dmitry Baryshkov; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 42661 bytes --] == Series Details == Series: tests/kms_properties: drop immutability checks URL : https://patchwork.freedesktop.org/series/136199/ State : success == Summary == CI Bug Log - changes from XEIGT_7928_full -> XEIGTPW_11421_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11421_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: NOTRUN -> [FAIL][1] ([Intel XE#911]) +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][2] ([Intel XE#1426]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [PASS][3] -> [FAIL][4] ([Intel XE#1659]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1201] / [Intel XE#316]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1467]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#607]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#346]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_big_joiner@basic.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#367]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1512]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1399]) +11 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#1252]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#314] / [Intel XE#599]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#314]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1152]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +12 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#307]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#599]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1413]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#323]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#309]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#307]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1421]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#2019]) +1 other test dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [PASS][36] -> [DMESG-WARN][37] ([Intel XE#1551]) +5 other tests dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1401]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1397] / [Intel XE#1745]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1397]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [i915#5274]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#651]) +21 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#1960]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#656]) +41 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#651]) +24 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1470]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#1162]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html * igt@kms_plane@plane-position-hole-dpms: - shard-lnl: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#324]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-8/igt@kms_plane@plane-position-hole-dpms.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][54] -> [FAIL][55] ([Intel XE#616]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#616]) +2 other tests fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#455]) +19 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#498]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#305]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1122] / [Intel XE#1201]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: NOTRUN -> [FAIL][61] ([Intel XE#718]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][62] ([Intel XE#1430]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1129] / [Intel XE#1201]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#908]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1439]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1128]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#929]) +12 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-lnl: NOTRUN -> [FAIL][69] ([Intel XE#1649]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#327]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1437]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1435]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][74] -> [FAIL][75] ([Intel XE#899]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html * igt@kms_writeback@writeback-check-output: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#756]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-433/igt@kms_writeback@writeback-fb-id.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1091] / [Intel XE#1201]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1126] / [Intel XE#1201]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#688]) +13 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-4/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#1600]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][82] -> [TIMEOUT][83] ([Intel XE#1473]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [PASS][84] -> [TIMEOUT][85] ([Intel XE#1473] / [Intel XE#392]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1392]) +8 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#288]) +21 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#584]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@xe_gt_freq@freq_suspend.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1416]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#977]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1201] / [Intel XE#979]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#366]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-lnl: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#1358] / [Intel XE#1616]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-7/igt@xe_pm@s2idle-d3hot-basic-exec.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-1/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#1551] / [Intel XE#569]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-433/igt@xe_pm@s3-d3hot-basic-exec.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-lnl: NOTRUN -> [ABORT][97] ([Intel XE#1358] / [Intel XE#1794]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#2280]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@xe_pm@s4-mocs.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][100] ([Intel XE#1442]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#944]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: NOTRUN -> [DMESG-WARN][102] ([Intel XE#1330] / [Intel XE#1760]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4: - shard-dg2-set2: [DMESG-WARN][103] ([Intel XE#2019]) -> [PASS][104] +4 other tests pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][105] ([Intel XE#324]) -> [PASS][106] +3 other tests pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_plane@plane-position-covered.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@kms_plane@plane-position-covered.html * {igt@kms_plane@plane-position-covered@pipe-b-plane-3}: - shard-lnl: [DMESG-WARN][107] ([Intel XE#324]) -> [PASS][108] +2 other tests pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][109] ([Intel XE#361]) -> [PASS][110] +1 other test pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-lnl: [FAIL][111] ([Intel XE#1649]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [FAIL][113] ([Intel XE#899]) -> [PASS][114] +1 other test pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [FAIL][115] ([Intel XE#1000]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][117] ([Intel XE#2105]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_migrate: - shard-dg2-set2: [SKIP][119] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-466/igt@xe_live_ktest@xe_migrate.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [DMESG-WARN][121] -> [PASS][122] +1 other test pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@xe_pm@s4-basic-exec.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][123] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-5/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][125] ([Intel XE#2019] / [Intel XE#2280]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@query-engines: - shard-lnl: [INCOMPLETE][127] ([Intel XE#1960]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-1/igt@xe_query@query-engines.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@xe_query@query-engines.html * igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer: - shard-dg2-set2: [ABORT][129] ([Intel XE#2268]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-436/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html #### Warnings #### * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-lnl: [INCOMPLETE][131] ([Intel XE#1960]) -> [SKIP][132] ([Intel XE#651]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: [SKIP][133] ([Intel XE#1909]) -> [SKIP][134] ([Intel XE#736]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][135] ([Intel XE#1729]) -> [SKIP][136] ([Intel XE#1201] / [Intel XE#362]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [TIMEOUT][137] ([Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][138] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html * igt@xe_exec_reset@close-fd: - shard-lnl: [DMESG-WARN][139] ([Intel XE#2271]) -> [ABORT][140] ([Intel XE#2271] / [Intel XE#2309]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-lnl-8/igt@xe_exec_reset@close-fd.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-lnl-6/igt@xe_exec_reset@close-fd.html * igt@xe_exec_reset@parallel-close-fd: - shard-dg2-set2: [ABORT][141] ([Intel XE#2273] / [Intel XE#2309]) -> [ABORT][142] ([Intel XE#2271] / [Intel XE#2309]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_exec_reset@parallel-close-fd.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-433/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][143] ([Intel XE#1999]) -> [SKIP][144] ([Intel XE#1192] / [Intel XE#1201]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-464/igt@xe_live_ktest@xe_mocs.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-436/igt@xe_live_ktest@xe_mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [INCOMPLETE][145] ([Intel XE#1195] / [Intel XE#569]) -> [DMESG-WARN][146] ([Intel XE#569]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [DMESG-WARN][147] ([Intel XE#1551] / [Intel XE#569]) -> [INCOMPLETE][148] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#569]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-435/igt@xe_pm@s3-vm-bind-userptr.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [SKIP][149] ([Intel XE#1130] / [Intel XE#1201]) -> [DMESG-FAIL][150] ([Intel XE#1760]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7928/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [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#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1909 [Intel XE#1960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1960 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207 [Intel XE#2268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2268 [Intel XE#2271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2271 [Intel XE#2273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2273 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2309 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#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#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [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 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_7928 -> IGTPW_11421 IGTPW_11421: a4d5d82f20da63d7155124558c7a300daf5295dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1619-cf52b34c47ed2a05c46193f0b9807ffd8838dbd8: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11421/index.html [-- Attachment #2: Type: text/html, Size: 50791 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_properties: drop immutability checks 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov ` (2 preceding siblings ...) 2024-07-17 22:02 ` ✓ CI.xeFULL: success " Patchwork @ 2024-07-18 6:47 ` Patchwork 2024-07-18 10:00 ` [PATCH i-g-t] " Daniel Vetter 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-07-18 6:47 UTC (permalink / raw) To: Dmitry Baryshkov; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 93280 bytes --] == Series Details == Series: tests/kms_properties: drop immutability checks URL : https://patchwork.freedesktop.org/series/136199/ State : failure == Summary == CI Bug Log - changes from IGT_7928_full -> IGTPW_11421_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11421_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11421_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_11421/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11421_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@sysfs_heartbeat_interval@nopreempt@ccs0: - shard-dg2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-11/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@sysfs_heartbeat_interval@nopreempt@ccs0.html Known issues ------------ Here are the changes found in IGTPW_11421_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-2/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +17 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +15 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-8/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][18] ([i915#9846]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg1-13/igt@gem_eio@unwedge-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4473] / [i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][29] ([i915#2842]) +2 other tests fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) +5 other tests fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +16 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +8 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +12 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][44] ([i915#10378]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-2/igt@gem_lmem_swapping@massive-random.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4565]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][49] ([i915#5493]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][51] ([i915#10378]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-3/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@invalid-flags: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@gem_pread@self.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +9 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#8411]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4885]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@gem_softpin@evict-snoop.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-7/igt@gem_tiling_max_stride.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4879]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#3323]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@gem_userptr_blits@readonly-unsync.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3281] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-1/igt@gen9_exec_parse@allowed-single.html - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#7178]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#8399]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][93] +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#6621]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8925]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#4387]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#6245]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][99] ([i915#9311]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk7/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4212]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3826]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4212]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#8709]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#8709]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [PASS][109] -> [FAIL][110] ([i915#5956]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-snb5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-snb6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5286]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#5138]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3638]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +16 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10656]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#6095]) +75 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +204 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +7 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#6095]) +63 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][129] +362 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#11616] / [i915#7213]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3742]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4087]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][134] +35 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#7828]) +10 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +12 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7116] / [i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3116]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3299]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3299]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7118] / [i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9424]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7118]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118] / [i915#9424]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#11453]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#11453]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8814]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11453]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11453]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4103] / [i915#4213]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#4103]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9809]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][162] ([i915#2346]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][163] -> [FAIL][164] ([i915#2346]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#9067]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8588]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2065] / [i915#4854]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4854]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#1839]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#1839]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9337]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4881]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637] / [i915#3966]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3637]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8381]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][185] +26 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#9934]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#8381]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-13/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][189] ([i915#2122]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][190] ([i915#2122]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#2672]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +6 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/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-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#8708]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5354]) +68 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#1825]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [PASS][200] -> [SKIP][201] +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#5439]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1825]) +34 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][204] +39 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +22 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#10433] / [i915#3458]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +29 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][208] +62 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3458]) +29 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +14 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#3458]) +19 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6118]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#433]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-13/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: [PASS][214] -> [SKIP][215] ([i915#433]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-18/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-9/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode: - shard-dg2: NOTRUN -> [INCOMPLETE][220] ([i915#2295]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_invalid_mode.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4816]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#6301]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#6301]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][224] ([i915#7862]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][225] ([i915#10647]) +1 other test fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#8806]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3555]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8806]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9423]) +11 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#9423]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#9423]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#5176] / [i915#9423]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9423]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#5235]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5235]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5235]) +9 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5235] / [i915#9423]) +23 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#5235]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#5354]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#9685]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5978]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3361]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9685]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9340]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][245] ([i915#9301]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][246] -> [SKIP][247] ([i915#9519]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#9519]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#9519]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#6524]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#6524]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#6524] / [i915#6805]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#6524]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-3/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#11520]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#11520]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#11520]) +7 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9808]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-3/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#11520]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9683]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#9683]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9732]) +13 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-8/igt@kms_psr@fbc-pr-primary-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#1072] / [i915#9732]) +22 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9688]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-2/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +28 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr2-sprite-render: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_psr@psr2-sprite-render.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +20 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-2/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#9685]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#4235]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#5289]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#5289]) +2 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5289]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#11131] / [i915#5190]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#11131]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#4235]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8623]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#8623]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][279] -> [FAIL][280] ([i915#9196]) +1 other test fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#9906]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#9906]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#9906]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2437]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-6/igt@kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#2437]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][286] ([i915#2437]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2437] / [i915#9412]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][289] ([i915#2437] / [i915#9412]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#2434]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-1/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#2434]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-6/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][292] ([i915#9100]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8807]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][294] ([i915#9351]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3291] / [i915#3708]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3708] / [i915#4077]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-2/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3708]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-mtlp-4/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3708]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-15/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#3708]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#9917]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#9917]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][302] ([i915#9781]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-10/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [ABORT][303] ([i915#5507]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-4/igt@device_reset@unbind-reset-rebind.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][305] ([i915#2842]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][307] ([i915#9820]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-glk2/igt@i915_module_load@reload-with-fault-injection.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][309] ([i915#9820]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][311] ([i915#3591]) -> [PASS][312] +1 other test pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [FAIL][313] ([i915#5956]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html - shard-glk: [INCOMPLETE][315] ([i915#9878]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-glk: [DMESG-WARN][317] ([i915#10166]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-glk2/igt@kms_cursor_legacy@torture-bo@pipe-a.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-glk1/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][319] ([i915#2122]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][321] ([i915#9519]) -> [PASS][322] +1 other test pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][323] ([i915#2842]) -> [FAIL][324] ([i915#2876]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@kms_content_protection@uevent: - shard-snb: [INCOMPLETE][325] ([i915#8816]) -> [SKIP][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-snb7/igt@kms_content_protection@uevent.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-snb5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][327] ([i915#11453]) -> [SKIP][328] ([i915#11453] / [i915#3359]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][329] ([i915#10433] / [i915#3458]) -> [SKIP][330] ([i915#3458]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][331] ([i915#4070] / [i915#4816]) -> [SKIP][332] ([i915#4816]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][333] ([i915#3361]) -> [FAIL][334] ([i915#9295]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][335] ([i915#4281]) -> [SKIP][336] ([i915#3361]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: [SKIP][337] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][338] ([i915#1072] / [i915#9732]) +11 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][339] ([i915#1072] / [i915#9732]) -> [SKIP][340] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7928/shard-dg2-2/igt@kms_psr@psr-cursor-render.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [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#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [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#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [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_7928 -> IGTPW_11421 CI-20190529: 20190529 CI_DRM_15086: cf52b34c47ed2a05c46193f0b9807ffd8838dbd8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11421: a4d5d82f20da63d7155124558c7a300daf5295dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7928: 294a7a487aab103c54b0deeb1559fcba371232d9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11421/index.html [-- Attachment #2: Type: text/html, Size: 117069 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov ` (3 preceding siblings ...) 2024-07-18 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-07-18 10:00 ` Daniel Vetter 2024-07-19 10:10 ` Daniel Stone 4 siblings, 1 reply; 12+ messages in thread From: Daniel Vetter @ 2024-07-18 10:00 UTC (permalink / raw) To: Dmitry Baryshkov; +Cc: igt-dev, Maxime Ripard, Ville Syrjälä On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > Following the discussion on IRC, it is actually an error to require that > properties that can not be chaged are marked as immutable. > > First of all, it creates inconsistent uAPI. Some drivers might have an > immutable property, while others will have it mutable. Yes, there are > known examples for such behaviour (e.g. zpos), but they are clearly > documented in this way. > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > more of the 'direction' of the property (whether it is set by the kernel > or it is expected to be set by the userspace) rather than simply states > that there is no way for the userspace to change the property. > > Drop the single-value-is-immutable tests. > > Fixes: 29ae12bd764e ("tests/kms_properties: Validate properties harder") > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Link: https://oftc.irclog.whitequark.org/dri-devel/2024-07-16#33374622 > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Makes sense, but we might drop some test coverage for the properties where we _do_ want the single value to be immutable. Like zpos. So I think at least a cursory audit of existing properties would be good, checking that the kerneldoc is accurate and then maybe limiting these checks here to properties which are documented to have this behaviour? I know that's a bunch more work, but I fear if we just drop this we only move from one a bit confusing state of the uapi to another one, without real improvements. Ofc if all the compositor folks tell me that this doesn't matter anyway, I'll shut up :-) Cheers, Sima > --- > tests/kms_properties.c | 8 -------- > 1 file changed, 8 deletions(-) > > diff --git a/tests/kms_properties.c b/tests/kms_properties.c > index c0e5be1c90a8..c41b88bef76f 100644 > --- a/tests/kms_properties.c > +++ b/tests/kms_properties.c > @@ -421,11 +421,9 @@ static void validate_range_prop(const struct drm_mode_get_property *prop, > { > const uint64_t *values = from_user_pointer(prop->values_ptr); > bool is_unsigned = prop->flags & DRM_MODE_PROP_RANGE; > - bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE; > > igt_assert_eq(prop->count_values, 2); > igt_assert_eq(prop->count_enum_blobs, 0); > - igt_assert(values[0] != values[1] || immutable); > > if (is_unsigned) { > igt_assert_lte_u64(values[0], values[1]); > @@ -461,12 +459,10 @@ static void validate_enum_prop(const struct drm_mode_get_property *prop, > uint64_t value) > { > const uint64_t *values = from_user_pointer(prop->values_ptr); > - bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE; > int i; > > igt_assert_lte(1, prop->count_values); > igt_assert_eq(prop->count_enum_blobs, prop->count_values); > - igt_assert(prop->count_values != 1 || immutable); > > for (i = 0; i < prop->count_values; i++) { > if (value == values[i]) > @@ -481,12 +477,10 @@ static void validate_bitmask_prop(const struct drm_mode_get_property *prop, > uint64_t value) > { > const uint64_t *values = from_user_pointer(prop->values_ptr); > - bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE; > uint64_t mask = 0; > > igt_assert_lte(1, prop->count_values); > igt_assert_eq(prop->count_enum_blobs, prop->count_values); > - igt_assert(prop->count_values != 1 || immutable); > > for (int i = 0; i < prop->count_values; i++) { > igt_assert_lte_u64(values[i], 63); > @@ -535,7 +529,6 @@ static void validate_object_prop(int fd, > uint64_t value) > { > const uint64_t *values = from_user_pointer(prop->values_ptr); > - bool immutable = prop->flags & DRM_MODE_PROP_IMMUTABLE; > struct drm_mode_crtc crtc; > struct drm_mode_fb_cmd fb; > > @@ -543,7 +536,6 @@ static void validate_object_prop(int fd, > igt_assert_eq(prop->count_enum_blobs, 0); > > igt_assert_lte_u64(value, 0xffffffff); > - igt_assert(!immutable || value != 0); > > switch (values[0]) { > case DRM_MODE_OBJECT_CRTC: > -- > 2.43.0 > -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-18 10:00 ` [PATCH i-g-t] " Daniel Vetter @ 2024-07-19 10:10 ` Daniel Stone 2024-07-19 11:55 ` Xaver Hugl 0 siblings, 1 reply; 12+ messages in thread From: Daniel Stone @ 2024-07-19 10:10 UTC (permalink / raw) To: Daniel Vetter Cc: Dmitry Baryshkov, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria, xaver.hugl Hi, On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > Following the discussion on IRC, it is actually an error to require that > > properties that can not be chaged are marked as immutable. > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > immutable property, while others will have it mutable. Yes, there are > > known examples for such behaviour (e.g. zpos), but they are clearly > > documented in this way. > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > more of the 'direction' of the property (whether it is set by the kernel > > or it is expected to be set by the userspace) rather than simply states > > that there is no way for the userspace to change the property. > > > > Drop the single-value-is-immutable tests. > > Makes sense, but we might drop some test coverage for the properties where > we _do_ want the single value to be immutable. Like zpos. > > So I think at least a cursory audit of existing properties would be good, > checking that the kerneldoc is accurate and then maybe limiting these > checks here to properties which are documented to have this behaviour? > > I know that's a bunch more work, but I fear if we just drop this we only > move from one a bit confusing state of the uapi to another one, without > real improvements. > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > I'll shut up :-) Weston doesn't care - the effect is the same for us whether it's immutable or mutable-but-single-value. CCed some other compositor people too. Cheers, Daniel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-19 10:10 ` Daniel Stone @ 2024-07-19 11:55 ` Xaver Hugl 2024-07-19 11:57 ` Dmitry Baryshkov 0 siblings, 1 reply; 12+ messages in thread From: Xaver Hugl @ 2024-07-19 11:55 UTC (permalink / raw) To: Daniel Stone Cc: Daniel Vetter, Dmitry Baryshkov, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria Am Fr., 19. Juli 2024 um 12:10 Uhr schrieb Daniel Stone <daniel@fooishbar.org>: > > Hi, > > On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > > Following the discussion on IRC, it is actually an error to require that > > > properties that can not be chaged are marked as immutable. > > > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > > immutable property, while others will have it mutable. Yes, there are > > > known examples for such behaviour (e.g. zpos), but they are clearly > > > documented in this way. > > > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > > more of the 'direction' of the property (whether it is set by the kernel > > > or it is expected to be set by the userspace) rather than simply states > > > that there is no way for the userspace to change the property. > > > > > > Drop the single-value-is-immutable tests. > > > > Makes sense, but we might drop some test coverage for the properties where > > we _do_ want the single value to be immutable. Like zpos. > > > > So I think at least a cursory audit of existing properties would be good, > > checking that the kerneldoc is accurate and then maybe limiting these > > checks here to properties which are documented to have this behaviour? > > > > I know that's a bunch more work, but I fear if we just drop this we only > > move from one a bit confusing state of the uapi to another one, without > > real improvements. > > > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > > I'll shut up :-) > > Weston doesn't care - the effect is the same for us whether it's > immutable or mutable-but-single-value. For KWin's current code it does matter that blob properties that are only set from the kernel side and that the compositor should parse are immutable; if EDID were to become mutable for example, that could cause a regression for KWin. For properties like zpos, which the compositor is supposed to set on some drivers, I'd prefer it if they were consistently never immutable. > CCed some other compositor people too. > > Cheers, > Daniel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-19 11:55 ` Xaver Hugl @ 2024-07-19 11:57 ` Dmitry Baryshkov 2024-07-19 12:48 ` Xaver Hugl 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-07-19 11:57 UTC (permalink / raw) To: Xaver Hugl Cc: Daniel Stone, Daniel Vetter, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria On Fri, 19 Jul 2024 at 14:55, Xaver Hugl <xaver.hugl@kde.org> wrote: > > Am Fr., 19. Juli 2024 um 12:10 Uhr schrieb Daniel Stone <daniel@fooishbar.org>: > > > > Hi, > > > > On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > > > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > > > Following the discussion on IRC, it is actually an error to require that > > > > properties that can not be chaged are marked as immutable. > > > > > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > > > immutable property, while others will have it mutable. Yes, there are > > > > known examples for such behaviour (e.g. zpos), but they are clearly > > > > documented in this way. > > > > > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > > > more of the 'direction' of the property (whether it is set by the kernel > > > > or it is expected to be set by the userspace) rather than simply states > > > > that there is no way for the userspace to change the property. > > > > > > > > Drop the single-value-is-immutable tests. > > > > > > Makes sense, but we might drop some test coverage for the properties where > > > we _do_ want the single value to be immutable. Like zpos. > > > > > > So I think at least a cursory audit of existing properties would be good, > > > checking that the kerneldoc is accurate and then maybe limiting these > > > checks here to properties which are documented to have this behaviour? > > > > > > I know that's a bunch more work, but I fear if we just drop this we only > > > move from one a bit confusing state of the uapi to another one, without > > > real improvements. > > > > > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > > > I'll shut up :-) > > > > Weston doesn't care - the effect is the same for us whether it's > > immutable or mutable-but-single-value. > > For KWin's current code it does matter that blob properties that are > only set from the kernel side and that the compositor should parse are > immutable; if EDID were to become mutable for example, that could > cause a regression for KWin. > > For properties like zpos, which the compositor is supposed to set on > some drivers, I'd prefer it if they were consistently never immutable. The zpos property is already sometimes immutable, e.g. for cursor planes. -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-19 11:57 ` Dmitry Baryshkov @ 2024-07-19 12:48 ` Xaver Hugl 2024-07-19 12:52 ` Dmitry Baryshkov 0 siblings, 1 reply; 12+ messages in thread From: Xaver Hugl @ 2024-07-19 12:48 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Daniel Stone, Daniel Vetter, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria Am Fr., 19. Juli 2024 um 13:57 Uhr schrieb Dmitry Baryshkov <dmitry.baryshkov@linaro.org>: > > On Fri, 19 Jul 2024 at 14:55, Xaver Hugl <xaver.hugl@kde.org> wrote: > > > > Am Fr., 19. Juli 2024 um 12:10 Uhr schrieb Daniel Stone <daniel@fooishbar.org>: > > > > > > Hi, > > > > > > On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > > > > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > > > > Following the discussion on IRC, it is actually an error to require that > > > > > properties that can not be chaged are marked as immutable. > > > > > > > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > > > > immutable property, while others will have it mutable. Yes, there are > > > > > known examples for such behaviour (e.g. zpos), but they are clearly > > > > > documented in this way. > > > > > > > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > > > > more of the 'direction' of the property (whether it is set by the kernel > > > > > or it is expected to be set by the userspace) rather than simply states > > > > > that there is no way for the userspace to change the property. > > > > > > > > > > Drop the single-value-is-immutable tests. > > > > > > > > Makes sense, but we might drop some test coverage for the properties where > > > > we _do_ want the single value to be immutable. Like zpos. > > > > > > > > So I think at least a cursory audit of existing properties would be good, > > > > checking that the kerneldoc is accurate and then maybe limiting these > > > > checks here to properties which are documented to have this behaviour? > > > > > > > > I know that's a bunch more work, but I fear if we just drop this we only > > > > move from one a bit confusing state of the uapi to another one, without > > > > real improvements. > > > > > > > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > > > > I'll shut up :-) > > > > > > Weston doesn't care - the effect is the same for us whether it's > > > immutable or mutable-but-single-value. > > > > For KWin's current code it does matter that blob properties that are > > only set from the kernel side and that the compositor should parse are > > immutable; if EDID were to become mutable for example, that could > > cause a regression for KWin. > > > > For properties like zpos, which the compositor is supposed to set on > > some drivers, I'd prefer it if they were consistently never immutable. > > The zpos property is already sometimes immutable, e.g. for cursor planes. I know, I'm arguing that should be changed. It's just a weird quirk that doesn't change anything for compositors. > -- > With best wishes > Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-19 12:48 ` Xaver Hugl @ 2024-07-19 12:52 ` Dmitry Baryshkov 2024-07-19 13:29 ` Xaver Hugl 0 siblings, 1 reply; 12+ messages in thread From: Dmitry Baryshkov @ 2024-07-19 12:52 UTC (permalink / raw) To: Xaver Hugl Cc: Daniel Stone, Daniel Vetter, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria On Fri, 19 Jul 2024 at 15:48, Xaver Hugl <xaver.hugl@kde.org> wrote: > > Am Fr., 19. Juli 2024 um 13:57 Uhr schrieb Dmitry Baryshkov > <dmitry.baryshkov@linaro.org>: > > > > On Fri, 19 Jul 2024 at 14:55, Xaver Hugl <xaver.hugl@kde.org> wrote: > > > > > > Am Fr., 19. Juli 2024 um 12:10 Uhr schrieb Daniel Stone <daniel@fooishbar.org>: > > > > > > > > Hi, > > > > > > > > On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > > > > > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > > > > > Following the discussion on IRC, it is actually an error to require that > > > > > > properties that can not be chaged are marked as immutable. > > > > > > > > > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > > > > > immutable property, while others will have it mutable. Yes, there are > > > > > > known examples for such behaviour (e.g. zpos), but they are clearly > > > > > > documented in this way. > > > > > > > > > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > > > > > more of the 'direction' of the property (whether it is set by the kernel > > > > > > or it is expected to be set by the userspace) rather than simply states > > > > > > that there is no way for the userspace to change the property. > > > > > > > > > > > > Drop the single-value-is-immutable tests. > > > > > > > > > > Makes sense, but we might drop some test coverage for the properties where > > > > > we _do_ want the single value to be immutable. Like zpos. > > > > > > > > > > So I think at least a cursory audit of existing properties would be good, > > > > > checking that the kerneldoc is accurate and then maybe limiting these > > > > > checks here to properties which are documented to have this behaviour? > > > > > > > > > > I know that's a bunch more work, but I fear if we just drop this we only > > > > > move from one a bit confusing state of the uapi to another one, without > > > > > real improvements. > > > > > > > > > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > > > > > I'll shut up :-) > > > > > > > > Weston doesn't care - the effect is the same for us whether it's > > > > immutable or mutable-but-single-value. > > > > > > For KWin's current code it does matter that blob properties that are > > > only set from the kernel side and that the compositor should parse are > > > immutable; if EDID were to become mutable for example, that could > > > cause a regression for KWin. > > > > > > For properties like zpos, which the compositor is supposed to set on > > > some drivers, I'd prefer it if they were consistently never immutable. > > > > The zpos property is already sometimes immutable, e.g. for cursor planes. > > I know, I'm arguing that should be changed. It's just a weird quirk > that doesn't change anything for compositors. Maybe I'm missing something. For some of the Qualcomm devices we have generic planes which can have any zpos and in some cases a cursor plane which must be the last one. Currently this can be represented by using immutable zpos so we can make sure that the cursor plane is always on the top. If the zpos is always mutable, we have no way to tell userspace that this plane must be on top. -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_properties: drop immutability checks 2024-07-19 12:52 ` Dmitry Baryshkov @ 2024-07-19 13:29 ` Xaver Hugl 0 siblings, 0 replies; 12+ messages in thread From: Xaver Hugl @ 2024-07-19 13:29 UTC (permalink / raw) To: Dmitry Baryshkov Cc: Daniel Stone, Daniel Vetter, igt-dev, Maxime Ripard, Ville Syrjälä, emersion, Jonas Ådahl, victoria Am Fr., 19. Juli 2024 um 14:52 Uhr schrieb Dmitry Baryshkov <dmitry.baryshkov@linaro.org>: > > On Fri, 19 Jul 2024 at 15:48, Xaver Hugl <xaver.hugl@kde.org> wrote: > > > > Am Fr., 19. Juli 2024 um 13:57 Uhr schrieb Dmitry Baryshkov > > <dmitry.baryshkov@linaro.org>: > > > > > > On Fri, 19 Jul 2024 at 14:55, Xaver Hugl <xaver.hugl@kde.org> wrote: > > > > > > > > Am Fr., 19. Juli 2024 um 12:10 Uhr schrieb Daniel Stone <daniel@fooishbar.org>: > > > > > > > > > > Hi, > > > > > > > > > > On Thu, 18 Jul 2024 at 11:01, Daniel Vetter <daniel.vetter@ffwll.ch> wrote: > > > > > > On Wed, Jul 17, 2024 at 05:39:47PM +0300, Dmitry Baryshkov wrote: > > > > > > > Following the discussion on IRC, it is actually an error to require that > > > > > > > properties that can not be chaged are marked as immutable. > > > > > > > > > > > > > > First of all, it creates inconsistent uAPI. Some drivers might have an > > > > > > > immutable property, while others will have it mutable. Yes, there are > > > > > > > known examples for such behaviour (e.g. zpos), but they are clearly > > > > > > > documented in this way. > > > > > > > > > > > > > > Second, by the nature of the flag, the DRM_MODE_PROP_IMMUTABLE defines > > > > > > > more of the 'direction' of the property (whether it is set by the kernel > > > > > > > or it is expected to be set by the userspace) rather than simply states > > > > > > > that there is no way for the userspace to change the property. > > > > > > > > > > > > > > Drop the single-value-is-immutable tests. > > > > > > > > > > > > Makes sense, but we might drop some test coverage for the properties where > > > > > > we _do_ want the single value to be immutable. Like zpos. > > > > > > > > > > > > So I think at least a cursory audit of existing properties would be good, > > > > > > checking that the kerneldoc is accurate and then maybe limiting these > > > > > > checks here to properties which are documented to have this behaviour? > > > > > > > > > > > > I know that's a bunch more work, but I fear if we just drop this we only > > > > > > move from one a bit confusing state of the uapi to another one, without > > > > > > real improvements. > > > > > > > > > > > > Ofc if all the compositor folks tell me that this doesn't matter anyway, > > > > > > I'll shut up :-) > > > > > > > > > > Weston doesn't care - the effect is the same for us whether it's > > > > > immutable or mutable-but-single-value. > > > > > > > > For KWin's current code it does matter that blob properties that are > > > > only set from the kernel side and that the compositor should parse are > > > > immutable; if EDID were to become mutable for example, that could > > > > cause a regression for KWin. > > > > > > > > For properties like zpos, which the compositor is supposed to set on > > > > some drivers, I'd prefer it if they were consistently never immutable. > > > > > > The zpos property is already sometimes immutable, e.g. for cursor planes. > > > > I know, I'm arguing that should be changed. It's just a weird quirk > > that doesn't change anything for compositors. > > Maybe I'm missing something. For some of the Qualcomm devices we have > generic planes which can have any zpos and in some cases a cursor > plane which must be the last one. Currently this can be represented by > using immutable zpos so we can make sure that the cursor plane is > always on the top. If the zpos is always mutable, we have no way to > tell userspace that this plane must be on top. zpos is a range property, you tell userspace the possible values with a min and a max value. If they're the same, there's only one value for userspace to use. > -- > With best wishes > Dmitry ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-07-22 7:48 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-07-17 14:39 [PATCH i-g-t] tests/kms_properties: drop immutability checks Dmitry Baryshkov 2024-07-17 16:21 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-07-17 16:22 ` ✗ CI.xeBAT: failure " Patchwork 2024-07-17 22:02 ` ✓ CI.xeFULL: success " Patchwork 2024-07-18 6:47 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-07-18 10:00 ` [PATCH i-g-t] " Daniel Vetter 2024-07-19 10:10 ` Daniel Stone 2024-07-19 11:55 ` Xaver Hugl 2024-07-19 11:57 ` Dmitry Baryshkov 2024-07-19 12:48 ` Xaver Hugl 2024-07-19 12:52 ` Dmitry Baryshkov 2024-07-19 13:29 ` Xaver Hugl
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox