* [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support
@ 2023-08-07 16:54 Rob Clark
2023-08-07 18:29 ` Juha-Pekka Heikkila
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Rob Clark @ 2023-08-07 16:54 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Skip the tests which require legacy gamma, instead of failing, if the hw
does not support legacy gamma.
v2: igt_require(lut_size > 0) instead
v3: simplify patch
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
tests/kms_plane.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 67cff61d6cd1..44cad2bf2491 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -469,6 +469,8 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
lut_size = crtc->gamma_size;
drmModeFreeCrtc(crtc);
+ igt_require(lut_size > 0);
+
lut = malloc(sizeof(uint16_t) * lut_size);
for (i = 0; i < lut_size; i++)
--
2.41.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support 2023-08-07 16:54 [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support Rob Clark @ 2023-08-07 18:29 ` Juha-Pekka Heikkila 2023-08-07 18:48 ` Rob Clark 2023-08-07 18:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane: Handle hw without legacy gamma support (rev3) Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Juha-Pekka Heikkila @ 2023-08-07 18:29 UTC (permalink / raw) To: Rob Clark, igt-dev; +Cc: Rob Clark Hi Rob, On 7.8.2023 19.54, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Skip the tests which require legacy gamma, instead of failing, if the hw > does not support legacy gamma. > > v2: igt_require(lut_size > 0) instead > v3: simplify patch > > Signed-off-by: Rob Clark <robdclark@chromium.org> > --- > tests/kms_plane.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 67cff61d6cd1..44cad2bf2491 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -469,6 +469,8 @@ static void set_legacy_lut(data_t *data, enum pipe pipe, > lut_size = crtc->gamma_size; > drmModeFreeCrtc(crtc); > > + igt_require(lut_size > 0); > + Is this something you really want on your hw? This lut stuff is originally coming from this patch https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/093fa482371795c3aa246509994eb21907f501b9 where it is mentioned: --- We also abuse the legacy LUT to drop the precision down to 6 bits so that still errors causes by the RGB<->YCbCr conversion end up being ignored. --- With your change you'd skip testing of all available pixel formats/modifiers combos on your driver while originally this feature is mostly intended just to avoid hitting Intel hw related anomalies. Do those tests work for you if you just not set that lut? /Juha-Pekka > lut = malloc(sizeof(uint16_t) * lut_size); > > for (i = 0; i < lut_size; i++) ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support 2023-08-07 18:29 ` Juha-Pekka Heikkila @ 2023-08-07 18:48 ` Rob Clark 2023-08-07 20:01 ` Rob Clark 0 siblings, 1 reply; 7+ messages in thread From: Rob Clark @ 2023-08-07 18:48 UTC (permalink / raw) To: juhapekka.heikkila; +Cc: igt-dev, Rob Clark On Mon, Aug 7, 2023 at 11:29 AM Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> wrote: > > Hi Rob, > > On 7.8.2023 19.54, Rob Clark wrote: > > From: Rob Clark <robdclark@chromium.org> > > > > Skip the tests which require legacy gamma, instead of failing, if the hw > > does not support legacy gamma. > > > > v2: igt_require(lut_size > 0) instead > > v3: simplify patch > > > > Signed-off-by: Rob Clark <robdclark@chromium.org> > > --- > > tests/kms_plane.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > > index 67cff61d6cd1..44cad2bf2491 100644 > > --- a/tests/kms_plane.c > > +++ b/tests/kms_plane.c > > @@ -469,6 +469,8 @@ static void set_legacy_lut(data_t *data, enum pipe pipe, > > lut_size = crtc->gamma_size; > > drmModeFreeCrtc(crtc); > > > > + igt_require(lut_size > 0); > > + > > Is this something you really want on your hw? This lut stuff is > originally coming from this patch > > https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/093fa482371795c3aa246509994eb21907f501b9 > > where it is mentioned: > > --- > We also abuse the legacy LUT to drop the precision down to 6 bits > so that still errors causes by the RGB<->YCbCr conversion end up > being ignored. > --- > > With your change you'd skip testing of all available pixel > formats/modifiers combos on your driver while originally this feature is > mostly intended just to avoid hitting Intel hw related anomalies. Do > those tests work for you if you just not set that lut? Hmm, I get failures, but at least part of that seems to be igt being unaware of qcom/msm modifiers.. I'll need to investigate further BR, -R > /Juha-Pekka > > > lut = malloc(sizeof(uint16_t) * lut_size); > > > > for (i = 0; i < lut_size; i++) > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support 2023-08-07 18:48 ` Rob Clark @ 2023-08-07 20:01 ` Rob Clark 0 siblings, 0 replies; 7+ messages in thread From: Rob Clark @ 2023-08-07 20:01 UTC (permalink / raw) To: juhapekka.heikkila; +Cc: igt-dev, Rob Clark On Mon, Aug 7, 2023 at 11:48 AM Rob Clark <robdclark@gmail.com> wrote: > > On Mon, Aug 7, 2023 at 11:29 AM Juha-Pekka Heikkila > <juhapekka.heikkila@gmail.com> wrote: > > > > Hi Rob, > > > > On 7.8.2023 19.54, Rob Clark wrote: > > > From: Rob Clark <robdclark@chromium.org> > > > > > > Skip the tests which require legacy gamma, instead of failing, if the hw > > > does not support legacy gamma. > > > > > > v2: igt_require(lut_size > 0) instead > > > v3: simplify patch > > > > > > Signed-off-by: Rob Clark <robdclark@chromium.org> > > > --- > > > tests/kms_plane.c | 2 ++ > > > 1 file changed, 2 insertions(+) > > > > > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > > > index 67cff61d6cd1..44cad2bf2491 100644 > > > --- a/tests/kms_plane.c > > > +++ b/tests/kms_plane.c > > > @@ -469,6 +469,8 @@ static void set_legacy_lut(data_t *data, enum pipe pipe, > > > lut_size = crtc->gamma_size; > > > drmModeFreeCrtc(crtc); > > > > > > + igt_require(lut_size > 0); > > > + > > > > Is this something you really want on your hw? This lut stuff is > > originally coming from this patch > > > > https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/093fa482371795c3aa246509994eb21907f501b9 > > > > where it is mentioned: > > > > --- > > We also abuse the legacy LUT to drop the precision down to 6 bits > > so that still errors causes by the RGB<->YCbCr conversion end up > > being ignored. > > --- > > > > With your change you'd skip testing of all available pixel > > formats/modifiers combos on your driver while originally this feature is > > mostly intended just to avoid hitting Intel hw related anomalies. Do > > those tests work for you if you just not set that lut? > > Hmm, I get failures, but at least part of that seems to be igt being > unaware of qcom/msm modifiers.. I'll need to investigate further The issue seems to be that igt doesn't know how to generate bw compressed formats (in this case, QCOM_COMPRESSED).. I think the test is assuming that it can solid fill with a tiled modifier and get sensible results, but this isn't true for compressed modifiers BR, -R > BR, > -R > > > /Juha-Pekka > > > > > lut = malloc(sizeof(uint16_t) * lut_size); > > > > > > for (i = 0; i < lut_size; i++) > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane: Handle hw without legacy gamma support (rev3) 2023-08-07 16:54 [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-08-07 18:29 ` Juha-Pekka Heikkila @ 2023-08-07 18:50 ` Patchwork 2023-08-07 19:18 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-07 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-07 18:50 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 23043 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support (rev3) URL : https://patchwork.freedesktop.org/series/121551/ State : success == Summary == CI Bug Log - changes from IGT_7419 -> IGTPW_9531 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/index.html Participating hosts (33 -> 42) ------------------------------ Additional (10): fi-rkl-11600 bat-adlp-9 fi-bsw-n3050 bat-adlm-1 fi-cfl-8700k bat-adln-1 fi-glk-j4005 fi-pnv-d510 fi-bsw-nick bat-mtlp-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9531 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#7456]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@debugfs_test@basic-hwmon.html - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#7456]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html - bat-adln-1: NOTRUN -> [SKIP][4] ([i915#7456]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@debugfs_test@basic-hwmon.html - bat-adlm-1: NOTRUN -> [SKIP][5] ([i915#7456]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-adlm-1: NOTRUN -> [SKIP][6] ([i915#2582]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@fbdev@eof.html * igt@fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1849]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-bsw-nick/igt@fbdev@info.html - bat-adlm-1: NOTRUN -> [SKIP][8] ([i915#1849] / [i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8700k: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#2190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-cfl-8700k/igt@gem_huc_copy@huc-copy.html - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#2190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-glk-j4005/igt@gem_lmem_swapping@basic.html - fi-cfl-8700k: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][14] ([fdo#109271]) +52 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html - bat-adlm-1: NOTRUN -> [SKIP][15] ([i915#4613]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#4613]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][17] ([fdo#109271]) +27 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4613]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4083]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#4077]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4079]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][22] ([i915#3282]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@gem_tiled_pread_basic.html - bat-adlp-9: NOTRUN -> [SKIP][23] ([i915#3282]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@gem_tiled_pread_basic.html - bat-adln-1: NOTRUN -> [SKIP][24] ([i915#3282]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@gem_tiled_pread_basic.html - bat-adlm-1: NOTRUN -> [SKIP][25] ([i915#3282]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-adlm-1: NOTRUN -> [SKIP][26] ([i915#7561]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@i915_pm_backlight@basic-brightness.html - bat-adlp-9: NOTRUN -> [SKIP][27] ([i915#3546] / [i915#7561]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@i915_pm_backlight@basic-brightness.html - fi-rkl-11600: NOTRUN -> [SKIP][28] ([i915#7561]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-8700k: NOTRUN -> [FAIL][29] ([i915#7940]) +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [PASS][30] -> [FAIL][31] ([i915#7940]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html - bat-adlp-9: NOTRUN -> [ABORT][32] ([i915#7977] / [i915#8668]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html - fi-kbl-7567u: [PASS][33] -> [FAIL][34] ([i915#7940]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-kbl-7567u/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#6621]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@i915_pm_rps@basic-api.html - bat-adlm-1: NOTRUN -> [SKIP][36] ([i915#6621]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - bat-jsl-1: [PASS][37] -> [DMESG-FAIL][38] ([i915#5334]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][39] ([i915#7059]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [PASS][40] -> [DMESG-FAIL][41] ([i915#8723]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][42] -> [ABORT][43] ([i915#7911] / [i915#7920]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rpls-1/igt@i915_selftest@live@requests.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][44] ([i915#6367]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - fi-pnv-d510: NOTRUN -> [ABORT][45] ([i915#8844]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html - bat-mtlp-8: NOTRUN -> [SKIP][46] ([i915#6645]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][47] ([i915#5190]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][48] ([i915#4212]) +8 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-adlp-9: NOTRUN -> [SKIP][49] ([i915#7828]) +7 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - bat-adlm-1: NOTRUN -> [SKIP][50] ([i915#7828]) +8 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-fast: - bat-adln-1: NOTRUN -> [SKIP][51] ([i915#7828]) +7 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@kms_chamelium_frames@hdmi-crc-fast.html - bat-mtlp-8: NOTRUN -> [SKIP][52] ([i915#7828]) +8 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][53] ([i915#7828]) +8 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - fi-cfl-8700k: NOTRUN -> [SKIP][54] ([fdo#109271]) +19 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-cfl-8700k/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][55] ([fdo#109271]) +18 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adlp-9: NOTRUN -> [SKIP][56] ([i915#4103]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adln-1: NOTRUN -> [SKIP][57] ([i915#4213]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][58] ([i915#4103]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-mtlp-8: NOTRUN -> [SKIP][59] ([i915#4213]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][60] ([i915#1845]) +16 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-plain-flip: - bat-adlm-1: NOTRUN -> [SKIP][61] ([i915#3637]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@force-load-detect: - bat-adln-1: NOTRUN -> [SKIP][62] ([fdo#109285]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@kms_force_connector_basic@force-load-detect.html - bat-adlm-1: NOTRUN -> [SKIP][63] ([fdo#109285]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html - fi-rkl-11600: NOTRUN -> [SKIP][64] ([fdo#109285] / [i915#4098]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][65] ([fdo#109285]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-adlp-9: NOTRUN -> [SKIP][66] ([fdo#109285]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][67] ([i915#5274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][68] ([i915#1849]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][69] ([i915#1845] / [i915#5354]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][70] -> [ABORT][71] ([i915#8442] / [i915#8668]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1: - fi-ivb-3770: NOTRUN -> [DMESG-WARN][72] ([i915#8841]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-ivb-3770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html * igt@kms_psr@cursor_plane_move: - bat-adlm-1: NOTRUN -> [SKIP][73] ([i915#1072]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][74] ([fdo#109271]) +38 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-adlp-9: NOTRUN -> [SKIP][75] ([i915#1072]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@kms_psr@sprite_plane_onoff.html - fi-rkl-11600: NOTRUN -> [SKIP][76] ([i915#1072]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@kms_psr@sprite_plane_onoff.html - bat-adln-1: NOTRUN -> [ABORT][77] ([i915#8442] / [i915#8668]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adln-1/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][78] ([i915#3555]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html - fi-rkl-11600: NOTRUN -> [SKIP][79] ([i915#3555] / [i915#4098]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-8: NOTRUN -> [SKIP][80] ([i915#8809]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlm-1: NOTRUN -> [SKIP][81] ([i915#3555]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][82] ([i915#1845] / [i915#3708]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][83] ([i915#3708] / [i915#4077]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][84] ([i915#3708]) +2 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][85] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][86] ([i915#3708]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][87] ([i915#7059]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][89] ([i915#4423]) -> [ABORT][90] ([i915#4423]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-adlp-11/igt@i915_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/bat-adlp-11/igt@i915_module_load@load.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8723]: https://gitlab.freedesktop.org/drm/intel/issues/8723 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8844]: https://gitlab.freedesktop.org/drm/intel/issues/8844 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9531 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9531: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/index.html IGT_7419: 7419 Testlist changes ---------------- -igt@msm_submitoverhead@submitbench-10-bos -igt@msm_submitoverhead@submitbench-10-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-100-bos -igt@msm_submitoverhead@submitbench-100-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-250-bos -igt@msm_submitoverhead@submitbench-250-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-500-bos -igt@msm_submitoverhead@submitbench-500-bos-no-implicit-sync -igt@msm_submitoverhead@submitbench-1000-bos -igt@msm_submitoverhead@submitbench-1000-bos-no-implicit-sync == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/index.html [-- Attachment #2: Type: text/html, Size: 29268 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for tests/kms_plane: Handle hw without legacy gamma support (rev3) 2023-08-07 16:54 [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-08-07 18:29 ` Juha-Pekka Heikkila 2023-08-07 18:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane: Handle hw without legacy gamma support (rev3) Patchwork @ 2023-08-07 19:18 ` Patchwork 2023-08-07 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-07 19:18 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 360 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support (rev3) URL : https://patchwork.freedesktop.org/series/121551/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9531](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9531/index.html) [-- Attachment #2: Type: text/html, Size: 876 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane: Handle hw without legacy gamma support (rev3) 2023-08-07 16:54 [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support Rob Clark ` (2 preceding siblings ...) 2023-08-07 19:18 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-08-07 23:52 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-08-07 23:52 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 77178 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support (rev3) URL : https://patchwork.freedesktop.org/series/121551/ State : failure == Summary == CI Bug Log - changes from IGT_7419_full -> IGTPW_9531_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9531_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9531_full, please notify your bug team 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_9531/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9531_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@single-move@all-pipes: - shard-snb: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb6/igt@kms_cursor_legacy@single-move@all-pipes.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb5/igt@kms_cursor_legacy@single-move@all-pipes.html Known issues ------------ Here are the changes found in IGTPW_9531_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +4 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-14/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][4] ([i915#7742]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +9 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3281]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4873]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-7/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#5325]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@busy-create@smem0: - shard-snb: [PASS][9] -> [ABORT][10] ([i915#8865]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_create@busy-create@smem0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb7/igt@gem_create@busy-create@smem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#6268]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: NOTRUN -> [ABORT][15] ([i915#8503]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@kms: - shard-apl: [PASS][16] -> [FAIL][17] ([i915#3354]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@gem_eio@kms.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-apl3/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][18] -> [FAIL][19] ([i915#5784]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-19/igt@gem_eio@unwedge-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@capture@vcs0-smem: - shard-mtlp: [PASS][20] -> [DMESG-WARN][21] ([i915#5591]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_capture@capture@vcs0-smem.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-7/igt@gem_exec_capture@capture@vcs0-smem.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-apl: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl6/igt@gem_exec_fair@basic-pace-share@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][28] -> [FAIL][29] ([i915#2842]) +2 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk9/igt@gem_exec_fair@basic-pace@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-glk4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +4 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][36] -> [ABORT][37] ([i915#7975] / [i915#8213]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8289]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-1/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#111656]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-6/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4077]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4885]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-15/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3297]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#3323]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen3_render_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109289]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-3/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2527] / [i915#2856]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#2856]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#2856]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [PASS][64] -> [FAIL][65] ([i915#7069]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_hangman@engine-engine-hang@vcs0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][66] -> [SKIP][67] ([fdo#109271]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][68] -> [SKIP][69] ([i915#1937]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][70] -> [FAIL][71] ([i915#3591]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@drm-resources-equal: - shard-rkl: [PASS][72] -> [FAIL][73] ([i915#7940]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@drm-resources-equal.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@i915_pm_rpm@drm-resources-equal.html * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0: - shard-dg1: [PASS][74] -> [FAIL][75] ([i915#7940]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-lmem0.html * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: - shard-tglu: [PASS][76] -> [FAIL][77] ([i915#7940]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-7/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#6621]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][79] ([i915#8346]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#8925]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#6188]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][82] -> [DMESG-WARN][83] ([i915#6367]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-2/igt@i915_selftest@live@slpc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#8502] / [i915#8709]) +11 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#8502]) +7 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][86] ([i915#8247]) +3 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6228]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#5286]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][89] ([fdo#111615] / [i915#5286]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5286]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][91] ([fdo#111614]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][92] ([fdo#111614]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-rkl: [PASS][93] -> [FAIL][94] ([i915#3743]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +8 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#110723]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111615]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#111615]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3689] / [i915#3886] / [i915#5354]) +8 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3734] / [i915#5354] / [i915#6095]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-7/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5354] / [i915#6095]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6095]) +6 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5354]) +4 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +6 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#5354]) +8 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087] / [i915#7213]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#7213]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#7828]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#7828]) +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#7828]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#7828]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3299]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#7118]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@kms_content_protection@legacy.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#6944] / [i915#7116] / [i915#7118]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][123] ([i915#7173]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#7116]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3359]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-64x64@pipe-d-edp-1: - shard-mtlp: [PASS][126] -> [FAIL][127] ([i915#8787]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-64x64@pipe-d-edp-1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-64x64@pipe-d-edp-1.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3359]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][129] ([fdo#109274]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][130] ([fdo#109271] / [fdo#111767]) +1 similar issue [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274] / [i915#5354]) +2 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109274] / [fdo#111767] / [i915#5354]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][133] -> [FAIL][134] ([i915#2346]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#2346]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [PASS][138] -> [DMESG-WARN][139] ([i915#2017]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@kms_cursor_legacy@single-bo@all-pipes.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#8588]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#8588]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#8588]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-4/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][143] ([i915#3804]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#3840]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][145] -> [FAIL][146] ([i915#79]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111825]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274]) +4 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3637]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-8/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#3637]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][151] -> [FAIL][152] ([i915#2122]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-tglu: [PASS][153] -> [ABORT][154] ([i915#5122] / [i915#5251]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-7/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][155] ([i915#8841]) +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#2672]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#2672]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#2587] / [i915#2672]) +2 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2672]) +2 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#2672] / [i915#3555]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109285]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5274]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [FAIL][163] ([i915#6880]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#1825]) +2 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109280]) +13 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#1825]) +6 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#5354]) +22 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#5460]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3458]) +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3458]) +8 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111825]) +7 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#110189]) +12 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8708]) +11 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#8708]) +1 similar issue [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3023]) +3 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-rkl: [PASS][176] -> [SKIP][177] ([i915#433]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@kms_hdmi_inject@inject-audio.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228]) +1 similar issue [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][179] ([fdo#109289]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [PASS][180] -> [FAIL][181] ([i915#1623]) +1 similar issue [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#6953]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][184] ([i915#8292]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#5176]) +3 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5176]) +1 similar issue [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][187] ([fdo#109271]) +33 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#5176]) +15 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5235]) +3 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#5235]) +19 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235]) +15 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#6524]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-14/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111068] / [i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#658]) +1 similar issue [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][195] ([fdo#111068] / [i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109642] / [fdo#111068] / [i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1072]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#1072]) +3 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-3/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1072]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-14/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#5461] / [i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5461] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#5461] / [i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4235]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3555]) +3 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8823]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4070] / [i915#533] / [i915#6768]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#2437]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2437]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#2436]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#7387]) +1 similar issue [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#2434]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@perf@mi-rpc.html - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109289]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-6/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2434]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-1/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][215] -> [FAIL][216] ([i915#7484]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][217] ([fdo#112283]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-1/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#112283]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@perf_pmu@event-wait@rcs0.html - shard-tglu: NOTRUN -> [SKIP][219] ([fdo#112283]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#8516]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][221] -> [FAIL][222] ([i915#4349]) +1 similar issue [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][223] -> [FAIL][224] ([i915#4349]) +6 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vcs1.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][225] -> [FAIL][226] ([i915#4349]) +6 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3291] / [i915#3708]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-8/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#109295] / [i915#3291] / [i915#3708]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][229] ([fdo#109295]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-10/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3708]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-11/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3708]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][232], [FAIL][233]) ([i915#7812] / [i915#8848]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb7/igt@runner@aborted.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb7/igt@runner@aborted.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [PASS][234] -> [FAIL][235] ([i915#8332]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@sysfs_heartbeat_interval@precise@vecs0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [PASS][236] -> [TIMEOUT][237] ([i915#7947]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-8/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2575]) +4 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109315]) +2 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109315] / [i915#2575]) +5 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-5/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2575]) +1 similar issue [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-6/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2575]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#7711]) +4 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#7711]) +2 similar issues [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-16/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2575]) +1 similar issue [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#7711]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg1: [FAIL][247] ([i915#5784]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@gem_eio@kms.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [FAIL][249] ([i915#5892]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][251] ([i915#2842]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][253] ([i915#2842]) -> [PASS][254] +2 similar issues [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][255] ([i915#9051]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][257] ([i915#7392] / [i915#8131]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_module_load@reload: - shard-snb: [ABORT][259] ([i915#4528] / [i915#8695]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb4/igt@i915_module_load@reload.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][261] ([i915#4281]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][263] ([fdo#109289] / [i915#8403]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][265] ([i915#1397]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@dpms-lpsp.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][267] ([i915#8717]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][269] ([i915#1397]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][271] ([i915#1397]) -> [PASS][272] +2 similar issues [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][273] ([i915#7269]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][275] ([i915#6763]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-2/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [FAIL][277] ([i915#3743]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][279] ([i915#2346]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][281] ([i915#4767]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [FAIL][283] ([i915#2122]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-glk7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][285] ([i915#6880]) -> [PASS][286] +1 similar issue [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html #### Warnings #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][287] ([i915#2017] / [i915#5954]) -> [DMESG-FAIL][288] ([i915#1982] / [i915#2017] / [i915#5954]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [DMESG-WARN][289] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][290] ([i915#8841]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-snb4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][291] ([fdo#109285]) -> [SKIP][292] ([fdo#109285] / [i915#4098]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][293] ([i915#1072] / [i915#4078]) -> [SKIP][294] ([i915#1072]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-12/igt@kms_psr@cursor_plane_move.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg1-17/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][295] ([i915#7331]) -> [INCOMPLETE][296] ([i915#5493]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7947]: https://gitlab.freedesktop.org/drm/intel/issues/7947 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8787]: https://gitlab.freedesktop.org/drm/intel/issues/8787 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9531 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9531: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/index.html IGT_7419: 7419 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9531/index.html [-- Attachment #2: Type: text/html, Size: 93307 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-08-07 23:52 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-07 16:54 [igt-dev] [PATCH v3] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-08-07 18:29 ` Juha-Pekka Heikkila 2023-08-07 18:48 ` Rob Clark 2023-08-07 20:01 ` Rob Clark 2023-08-07 18:50 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane: Handle hw without legacy gamma support (rev3) Patchwork 2023-08-07 19:18 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-07 23:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox