* [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation
@ 2024-02-14 8:53 Samala, Pranay
2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Samala, Pranay @ 2024-02-14 8:53 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, jeevan.b, pranay.samala
Samala, Pranay (1):
tests/kms_plane: Restricting number of pixel formats for simulation
tests/kms_plane.c | 3 +++
1 file changed, 3 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation 2024-02-14 8:53 [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation Samala, Pranay @ 2024-02-14 8:53 ` Samala, Pranay 2024-02-14 10:14 ` B, Jeevan ` (3 more replies) 2024-02-14 9:50 ` ✓ CI.xeBAT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) Patchwork ` (2 subsequent siblings) 3 siblings, 4 replies; 9+ messages in thread From: Samala, Pranay @ 2024-02-14 8:53 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, jeevan.b, pranay.samala, Samala The pixel-format subtest runs on all pixel formats, reducing it to single format to reduce execution time on simulation. Cc: B S, Karthik <karthik.b.s@intel.com> Cc: B, Jeevan <jeevan.b@intel.com> Signed-off-by: Samala, Pranay <pranay.samala@intel.com> --- tests/kms_plane.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 406aecc04..fbffc3cb0 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -1081,6 +1081,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, f.modifier == ref.modifier) continue; + if (f.format != DRM_FORMAT_XRGB8888 && igt_run_in_simulation()) + continue; + /* test each format "class" only once in non-extended tests */ if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { struct format_mod rf = { -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay @ 2024-02-14 10:14 ` B, Jeevan 2024-02-14 12:12 ` Juha-Pekka Heikkila ` (2 subsequent siblings) 3 siblings, 0 replies; 9+ messages in thread From: B, Jeevan @ 2024-02-14 10:14 UTC (permalink / raw) To: Samala, Pranay, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik > -----Original Message----- > From: Samala, Pranay <pranay.samala@intel.com> > Sent: Wednesday, February 14, 2024 2:23 PM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>; > Samala, Pranay <pranay.samala@intel.com>; Samala > Subject: [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats > for simulation > > The pixel-format subtest runs on all pixel formats, reducing it to single format > to reduce execution time on simulation. > > Cc: B S, Karthik <karthik.b.s@intel.com> > Cc: B, Jeevan <jeevan.b@intel.com> LGTM Reviewed-by: Jeevan B <jeevan.b@intel.com> > > Signed-off-by: Samala, Pranay <pranay.samala@intel.com> > --- > tests/kms_plane.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 406aecc04..fbffc3cb0 > 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1081,6 +1081,9 @@ static bool test_format_plane(data_t *data, enum > pipe pipe, > f.modifier == ref.modifier) > continue; > > + if (f.format != DRM_FORMAT_XRGB8888 && > igt_run_in_simulation()) > + continue; > + > /* test each format "class" only once in non-extended tests */ > if (!data->extended && f.modifier != > DRM_FORMAT_MOD_LINEAR) { > struct format_mod rf = { > -- > 2.34.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay 2024-02-14 10:14 ` B, Jeevan @ 2024-02-14 12:12 ` Juha-Pekka Heikkila 2024-02-14 13:07 ` Kamil Konieczny 2024-02-14 13:27 ` Kamil Konieczny 3 siblings, 0 replies; 9+ messages in thread From: Juha-Pekka Heikkila @ 2024-02-14 12:12 UTC (permalink / raw) To: Samala, Pranay, igt-dev; +Cc: karthik.b.s, jeevan.b, Samala Hi Pranay, On 14.2.2024 10.53, Samala, Pranay wrote: > The pixel-format subtest runs on all pixel formats, reducing it to single > format to reduce execution time on simulation. > > Cc: B S, Karthik <karthik.b.s@intel.com> > Cc: B, Jeevan <jeevan.b@intel.com> > > Signed-off-by: Samala, Pranay <pranay.samala@intel.com> > --- > tests/kms_plane.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 406aecc04..fbffc3cb0 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1081,6 +1081,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > f.modifier == ref.modifier) > continue; > > + if (f.format != DRM_FORMAT_XRGB8888 && igt_run_in_simulation()) > + continue; > + I don't think this is very good move when idea of this test is to try out pixel formats. This test will secure the plumbing for these different pixel formats will stay good hence at least for each bpp and planar groups should run some test. With this change would be checked reference format matches with itself. /Juha-Pekka > /* test each format "class" only once in non-extended tests */ > if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { > struct format_mod rf = { ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay 2024-02-14 10:14 ` B, Jeevan 2024-02-14 12:12 ` Juha-Pekka Heikkila @ 2024-02-14 13:07 ` Kamil Konieczny 2024-02-14 13:27 ` Kamil Konieczny 3 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-02-14 13:07 UTC (permalink / raw) To: igt-dev; +Cc: Samala, Pranay, karthik.b.s, jeevan.b, Samala Hi Samala,, On 2024-02-14 at 14:23:28 +0530, Samala, Pranay wrote: > The pixel-format subtest runs on all pixel formats, reducing it to single > format to reduce execution time on simulation. > > Cc: B S, Karthik <karthik.b.s@intel.com> ----- ^^^^ Should be: Cc: Karthik B S <karthik.b.s@intel.com> > Cc: B, Jeevan <jeevan.b@intel.com> ----- ^^^^ Same here: Cc: Jeevan B <jeevan.b@intel.com> > > Signed-off-by: Samala, Pranay <pranay.samala@intel.com> Please correct this in your git config, this should be: Signed-off-by: Pranay Samala <pranay.samala@intel.com> This can be corrected at merge, Regards, Kamil > --- > tests/kms_plane.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 406aecc04..fbffc3cb0 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1081,6 +1081,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > f.modifier == ref.modifier) > continue; > > + if (f.format != DRM_FORMAT_XRGB8888 && igt_run_in_simulation()) > + continue; > + > /* test each format "class" only once in non-extended tests */ > if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { > struct format_mod rf = { > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay ` (2 preceding siblings ...) 2024-02-14 13:07 ` Kamil Konieczny @ 2024-02-14 13:27 ` Kamil Konieczny 3 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-02-14 13:27 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev, karthik.b.s, jeevan.b, Samala Hi Samala,, On 2024-02-14 at 14:23:28 +0530, Samala, Pranay wrote: one more thing, do not put non-existing e-mail in Cc, like: Samala@freedesktop.org this is bouncing: user not exists. Regards, Kamil > The pixel-format subtest runs on all pixel formats, reducing it to single > format to reduce execution time on simulation. > > Cc: B S, Karthik <karthik.b.s@intel.com> > Cc: B, Jeevan <jeevan.b@intel.com> > > Signed-off-by: Samala, Pranay <pranay.samala@intel.com> > --- > tests/kms_plane.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 406aecc04..fbffc3cb0 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1081,6 +1081,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > f.modifier == ref.modifier) > continue; > > + if (f.format != DRM_FORMAT_XRGB8888 && igt_run_in_simulation()) > + continue; > + > /* test each format "class" only once in non-extended tests */ > if (!data->extended && f.modifier != DRM_FORMAT_MOD_LINEAR) { > struct format_mod rf = { > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) 2024-02-14 8:53 [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation Samala, Pranay 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay @ 2024-02-14 9:50 ` Patchwork 2024-02-14 9:55 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-14 12:44 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-14 9:50 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1570 bytes --] == Series Details == Series: tests/kms_plane: Reducing the execution time in simulation (rev2) URL : https://patchwork.freedesktop.org/series/129872/ State : success == Summary == CI Bug Log - changes from XEIGT_7711_BAT -> XEIGTPW_10671_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10671_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - bat-pvc-2: [DMESG-WARN][1] ([Intel XE#1238]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7711/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10671/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [Intel XE#1238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1238 Build changes ------------- * IGT: IGT_7711 -> IGTPW_10671 * Linux: xe-769-7c8e9135509f2e438e11a4af17387a204ab59884 -> xe-775-e3e6421a490e14b441f0ace4fe3cf45f70aa5c11 IGTPW_10671: 10671 IGT_7711: 7711 xe-769-7c8e9135509f2e438e11a4af17387a204ab59884: 7c8e9135509f2e438e11a4af17387a204ab59884 xe-775-e3e6421a490e14b441f0ace4fe3cf45f70aa5c11: e3e6421a490e14b441f0ace4fe3cf45f70aa5c11 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10671/index.html [-- Attachment #2: Type: text/html, Size: 2146 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) 2024-02-14 8:53 [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation Samala, Pranay 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay 2024-02-14 9:50 ` ✓ CI.xeBAT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) Patchwork @ 2024-02-14 9:55 ` Patchwork 2024-02-14 12:44 ` ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-14 9:55 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6709 bytes --] == Series Details == Series: tests/kms_plane: Reducing the execution time in simulation (rev2) URL : https://patchwork.freedesktop.org/series/129872/ State : success == Summary == CI Bug Log - changes from CI_DRM_14268 -> IGTPW_10671 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in IGTPW_10671 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlm-1: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_tiled_pread_basic: - bat-adlm-1: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][6] ([i915#9875] / [i915#9900]) +16 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/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][7] ([i915#3637]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: NOTRUN -> [SKIP][8] ([fdo#109285]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][9] ([i915#1849] / [i915#4342]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][10] ([fdo#109271]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html - bat-adlm-1: NOTRUN -> [SKIP][11] ([i915#5354]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: NOTRUN -> [SKIP][12] ([i915#3555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][13] ([i915#3708] / [i915#9900]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][14] ([i915#3708]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_parallel@engines@fds: - bat-adlm-1: [INCOMPLETE][15] ([i915#10264]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/bat-adlm-1/igt@gem_exec_parallel@engines@fds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/bat-adlm-1/igt@gem_exec_parallel@engines@fds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#10264]: https://gitlab.freedesktop.org/drm/intel/issues/10264 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [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#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9875]: https://gitlab.freedesktop.org/drm/intel/issues/9875 [i915#9900]: https://gitlab.freedesktop.org/drm/intel/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7711 -> IGTPW_10671 CI-20190529: 20190529 CI_DRM_14268: e3e6421a490e14b441f0ace4fe3cf45f70aa5c11 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10671: 10671 IGT_7711: 7711 Testlist changes ---------------- -igt@kms_colorop@plane-ctm_3x4_50_desat -igt@kms_colorop@plane-ctm_3x4_bt709_dec -igt@kms_colorop@plane-ctm_3x4_bt709_dec_enc -igt@kms_colorop@plane-ctm_3x4_bt709_enc -igt@kms_colorop@plane-ctm_3x4_bt709_enc_dec -igt@kms_colorop@plane-ctm_3x4_overdrive -igt@kms_colorop@plane-ctm_3x4_oversaturate -igt@kms_colorop@plane-srgb_eotf -igt@kms_colorop@plane-srgb_eotf-srgb_inv_eotf -igt@kms_colorop@plane-srgb_inv_eotf -igt@kms_color@plane-ctm3x3 -igt@kms_color@plane-ctm3x3-lut1d -igt@kms_color@plane-lut1d -igt@kms_color@plane-lut1d-ctm3x3 -igt@kms_color@plane-lut1d-ctm3x3-lut1d -igt@kms_color@plane-lut1d-lut1d -igt@kms_properties@colorop-properties-atomic -igt@kms_properties@colorop-properties-legacy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/index.html [-- Attachment #2: Type: text/html, Size: 7878 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.IGT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) 2024-02-14 8:53 [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation Samala, Pranay ` (2 preceding siblings ...) 2024-02-14 9:55 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-14 12:44 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-14 12:44 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 80005 bytes --] == Series Details == Series: tests/kms_plane: Reducing the execution time in simulation (rev2) URL : https://patchwork.freedesktop.org/series/129872/ State : success == Summary == CI Bug Log - changes from CI_DRM_14268_full -> IGTPW_10671_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_10671_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@api_intel_bb@blit-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-9/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +22 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@fbdev@pan: - shard-snb: [PASS][6] -> [FAIL][7] ([i915#4435]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb2/igt@fbdev@pan.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb7/igt@fbdev@pan.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][8] ([i915#10183]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#6335]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#6268]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][15] -> [FAIL][16] ([i915#5784]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg1-18/igt@gem_eio@unwedge-stress.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4771]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3539] / [i915#4852]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#2842]) +2 other tests fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][22] -> [FAIL][23] ([i915#2842]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: [PASS][25] -> [FAIL][26] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-6/igt@gem_exec_fair@basic-throttle@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][28] ([fdo#112283]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-7/igt@gem_exec_params@secure-non-master.html - shard-tglu: NOTRUN -> [SKIP][29] ([fdo#112283]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-9/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][30] ([fdo#112283]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3281]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +13 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-5/igt@gem_exec_reloc@basic-write-wc.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_10671/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-4/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk4/igt@gem_lmem_swapping@random.html * igt@gem_mmap@bad-size: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4083]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-5/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-1/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@gem_pread@snoop.html * igt@gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-1/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4270]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4270]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4270]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4270]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#8428]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#8411]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#3323]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#3323]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4958]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3297]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-2/igt@gen7_exec_parse@chained-batch.html - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-2/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@load-register-reg: - shard-mtlp: NOTRUN -> [SKIP][68] ([fdo#109289]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-large: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#2527]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@gen9_exec_parse@secure-batches.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4881]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#6227]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk3/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][74] ([i915#6227]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][75] -> [ABORT][76] ([i915#9820]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [PASS][77] -> [INCOMPLETE][78] ([i915#10137] / [i915#1982] / [i915#9849]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][79] ([i915#10131] / [i915#9697]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][80] -> [INCOMPLETE][81] ([i915#10137] / [i915#9820] / [i915#9849]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#8399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: NOTRUN -> [FAIL][83] ([i915#3591]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][85] -> [INCOMPLETE][86] ([i915#10137] / [i915#7790]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb4/igt@i915_pm_rps@reset.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#8925]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#6188]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][89] ([fdo#109303]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-3/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][90] ([i915#9311]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk2/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4215] / [i915#5190]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][94] ([fdo#111615] / [i915#5286]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][95] ([fdo#111614]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-7/igt@kms_big_fb@linear-32bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#111614]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#111614]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3638]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#111614] / [i915#3638]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][100] -> [FAIL][101] ([i915#3743]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +16 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6187]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#110723]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111615]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111615]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-yf-tiled-ccs: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#5354] / [i915#6095]) +24 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_ccs@pipe-a-bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_ccs@pipe-b-bad-rotation-90-yf-tiled-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#5354] / [i915#6095]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y-tiled-gen12-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5354]) +16 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_ccs@pipe-c-bad-pixel-format-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#6095]) +10 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#111827]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-rkl: NOTRUN -> [SKIP][115] ([fdo#111827]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111827]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#7828]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#7828]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#7828]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html - shard-tglu: NOTRUN -> [SKIP][120] ([i915#7828]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-6/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#7828]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#9424]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3299]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3116]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#9424]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3555] / [i915#6944] / [i915#9424]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-8/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7118] / [i915#9424]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#8814]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3555]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3555]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-16/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3359]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3359]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3359]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3359]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8814]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][140] ([fdo#111767] / [fdo#111825]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4213]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#110189] / [i915#9227]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#9833]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3555]) +6 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#8588]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#8588]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#8588]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-9/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3840]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: [PASS][149] -> [FAIL][150] ([i915#4767]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3469]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4854]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#1839]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][154] ([fdo#111825] / [i915#9934]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [fdo#111767]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][156] ([fdo#111825]) +9 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274]) +8 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3637]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#3637]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][160] ([fdo#109274] / [i915#3637] / [i915#3966]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8810]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2672]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +97 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111767] / [fdo#111825] / [i915#1825]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [PASS][170] -> [SKIP][171] ([fdo#109271] / [fdo#111767]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [PASS][172] -> [SKIP][173] ([fdo#109271]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111825] / [i915#1825]) +21 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#8708]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +11 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271]) +37 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html - shard-tglu: NOTRUN -> [SKIP][179] ([fdo#109280]) +12 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8708]) +19 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][181] ([fdo#111825]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#5439]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#9766]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][184] ([fdo#109271]) +141 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk3/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +18 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#111767] / [i915#5354]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1825]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][188] ([fdo#110189]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#6301]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#6301]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-dg1: NOTRUN -> [SKIP][194] ([fdo#109289]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-18/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#6953] / [i915#9423]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][196] ([i915#8292]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9423]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5176]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9423]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9423]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +23 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#5235]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#5235]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-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][204] ([i915#5235] / [i915#9423]) +11 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5235]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#5235]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9685]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][208] -> [SKIP][209] ([i915#4281]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9519]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#4077]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][212] -> [SKIP][213] ([i915#9519]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][214] -> [SKIP][215] ([i915#9519]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6524] / [i915#6805]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9683]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9683]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111068] / [i915#9683]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9685]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4235]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#4235] / [i915#5190]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][223] ([fdo#111615] / [i915#5289]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-10/igt@kms_setmode@basic-clone-single-crtc.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8809]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][226] ([fdo#109309]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][227] -> [FAIL][228] ([i915#9196]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][229] ([fdo#109271] / [i915#2437]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#7387]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2434]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@perf@mi-rpc.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#8850]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][233] ([i915#6806]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#8516]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-3/igt@perf_pmu@rc6-all-gts.html * igt@prime_udl: - shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109291]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-5/igt@prime_udl.html - shard-mtlp: NOTRUN -> [SKIP][236] ([fdo#109291]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-8/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3291] / [i915#3708]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9917]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][239] ([i915#9781]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk1/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][240] ([fdo#109307]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html - shard-tglu: NOTRUN -> [SKIP][241] ([fdo#109307]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][242] ([i915#4818]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-tglu: NOTRUN -> [SKIP][243] ([fdo#109315] / [i915#2575]) +4 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-10/igt@v3d/v3d_create_bo@create-bo-zeroed.html - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2575]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-7/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109315]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-6/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_cl@job-perfmon: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#2575]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-15/igt@v3d/v3d_submit_cl@job-perfmon.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2575]) +13 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-5/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_perfmon@destroy-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#7711]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-5/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#7711]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-17/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#7711]) +11 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@vc4/vc4_tiling@set-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#2575]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#7711]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-tglu: [ABORT][253] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-10/igt@gem_eio@hibernate.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [FAIL][255] ([i915#5784]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg2-6/igt@gem_eio@kms.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][257] ([i915#2842]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][259] ([i915#2842]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][261] ([i915#10137] / [i915#9200]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [INCOMPLETE][263] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][265] ([i915#3743]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [SKIP][267] ([fdo#109271] / [fdo#111767]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-snb: [SKIP][269] ([fdo#109271]) -> [PASS][270] +10 other tests pass [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][271] ([i915#2346]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-glk: [INCOMPLETE][273] -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-glk6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-glk7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][275] ([i915#8292]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][277] ([i915#9295]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][279] ([i915#9519]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@perf_pmu@multi-client@rcs0: - shard-mtlp: [FAIL][281] -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-mtlp-1/igt@perf_pmu@multi-client@rcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-5/igt@perf_pmu@multi-client@rcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][283] ([i915#10137] / [i915#9408] / [i915#9618]) -> [ABORT][284] ([i915#9618]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: [SKIP][285] ([i915#7213]) -> [SKIP][286] ([i915#7213] / [i915#9010]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-mtlp-8/igt@kms_cdclk@mode-transition-all-outputs.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-mtlp-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_content_protection@uevent: - shard-snb: [SKIP][287] ([fdo#109271]) -> [INCOMPLETE][288] ([i915#8816]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb4/igt@kms_content_protection@uevent.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb7/igt@kms_content_protection@uevent.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: [SKIP][289] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][290] ([i915#2587] / [i915#2672]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][291] ([fdo#109271]) -> [SKIP][292] ([fdo#109271] / [fdo#111767]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-snb: [SKIP][293] ([fdo#109271] / [fdo#111767]) -> [SKIP][294] ([fdo#109271]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][295] ([i915#3361]) -> [FAIL][296] ([i915#9295]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][297] ([i915#3361]) -> [SKIP][298] ([i915#4281]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14268/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10183]: https://gitlab.freedesktop.org/drm/intel/issues/10183 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [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#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7711 -> IGTPW_10671 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14268: e3e6421a490e14b441f0ace4fe3cf45f70aa5c11 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10671: 10671 IGT_7711: 7711 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10671/index.html [-- Attachment #2: Type: text/html, Size: 98602 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-02-14 13:27 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-14 8:53 [PATCH v2 0/1] tests/kms_plane: Reducing the execution time in simulation Samala, Pranay 2024-02-14 8:53 ` [PATCH v2 1/1] tests/kms_plane: Restricting number of pixel formats for simulation Samala, Pranay 2024-02-14 10:14 ` B, Jeevan 2024-02-14 12:12 ` Juha-Pekka Heikkila 2024-02-14 13:07 ` Kamil Konieczny 2024-02-14 13:27 ` Kamil Konieczny 2024-02-14 9:50 ` ✓ CI.xeBAT: success for tests/kms_plane: Reducing the execution time in simulation (rev2) Patchwork 2024-02-14 9:55 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-14 12:44 ` ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox