* [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF)
@ 2024-06-26 19:15 Jeevan B
2024-06-26 19:15 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Jeevan B @ 2024-06-26 19:15 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B
Add debugfs entry to validate LOBF status and create a new
test to validate.
Jeevan B (2):
lib/igt_kms: Added library functions for LOBF status
RFC: tests/kms_vrr: Add new test to validate LOBF
lib/igt_kms.c | 23 ++++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/kms_vrr.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++--
3 files changed, 74 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B @ 2024-06-26 19:15 ` Jeevan B 2024-07-17 4:45 ` [i-g-t,1/2] " Joshi, Kunal1 2024-06-26 19:15 ` [PATCH i-g-t 2/2] RFC: tests/kms_vrr: Add new test to validate LOBF Jeevan B ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Jeevan B @ 2024-06-26 19:15 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Added helper functions to check LOBF status to check weather it is enabled or disabled. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- lib/igt_kms.c | 23 +++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 174bbe6c4..1f0243eb6 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6071,6 +6071,29 @@ void igt_dump_crtcs_fd(int drmfd) drmModeFreeResources(mode_resources); } +/** + * igt_get_i915_edp_lobf_info + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Return: True if its enabled. + */ +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name) +{ + char buf[24]; + int fd, res; + + fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY); + igt_assert(fd >= 0); + + res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf)); + igt_require(res > 0); + + close(fd); + + return strstr(buf, "LOBF status: enabled"); +} + /** * igt_get_output_max_bpc: * @drmfd: A drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 01604dac9..5b1591631 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1195,6 +1195,7 @@ void igt_require_pipe(igt_display_t *display, void igt_dump_connectors_fd(int drmfd); void igt_dump_crtcs_fd(int drmfd); bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display); +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name); unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name); unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe); void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe, -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [i-g-t,1/2] lib/igt_kms: Added library functions for LOBF status 2024-06-26 19:15 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B @ 2024-07-17 4:45 ` Joshi, Kunal1 2024-07-17 8:51 ` Manna, Animesh 0 siblings, 1 reply; 12+ messages in thread From: Joshi, Kunal1 @ 2024-07-17 4:45 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: animesh.manna [-- Attachment #1: Type: text/plain, Size: 2099 bytes --] Hello Jeevan, On 6/27/2024 12:45 AM, Jeevan B wrote: > Added helper functions to check LOBF status to check weather > it is enabled or disabled. > > Signed-off-by: Jeevan B<jeevan.b@intel.com> > --- > lib/igt_kms.c | 23 +++++++++++++++++++++++ > lib/igt_kms.h | 1 + > 2 files changed, 24 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 174bbe6c4..1f0243eb6 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6071,6 +6071,29 @@ void igt_dump_crtcs_fd(int drmfd) > drmModeFreeResources(mode_resources); > } > > +/** > + * igt_get_i915_edp_lobf_info > + * @drmfd: A drm file descriptor > + * @connector_name: Name of the libdrm connector we're going to use > + * > + * Return: True if its enabled. > + */ > +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name) Small nitpick, can this be igt_get_i915_edp_lobf_status, since we are not reading other info. Also do we need to use aux wake alpm / aux less alpm status or that doesn't matter? Animesh any thoughts from you here? Thanks and Regards Kunal Joshi > +{ > + char buf[24]; > + int fd, res; > + > + fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY); > + igt_assert(fd >= 0); > + > + res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf)); > + igt_require(res > 0); > + > + close(fd); > + > + return strstr(buf, "LOBF status: enabled"); > +} > + > /** > * igt_get_output_max_bpc: > * @drmfd: A drm file descriptor > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 01604dac9..5b1591631 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1195,6 +1195,7 @@ void igt_require_pipe(igt_display_t *display, > void igt_dump_connectors_fd(int drmfd); > void igt_dump_crtcs_fd(int drmfd); > bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display); > +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name); > unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name); > unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe); > void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe, [-- Attachment #2: Type: text/html, Size: 2505 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [i-g-t,1/2] lib/igt_kms: Added library functions for LOBF status 2024-07-17 4:45 ` [i-g-t,1/2] " Joshi, Kunal1 @ 2024-07-17 8:51 ` Manna, Animesh 0 siblings, 0 replies; 12+ messages in thread From: Manna, Animesh @ 2024-07-17 8:51 UTC (permalink / raw) To: Joshi, Kunal1, B, Jeevan, igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 2762 bytes --] From: Joshi, Kunal1 <kunal1.joshi@intel.com> Sent: Wednesday, July 17, 2024 10:15 AM To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org Cc: Manna, Animesh <animesh.manna@intel.com> Subject: Re: [i-g-t,1/2] lib/igt_kms: Added library functions for LOBF status Hello Jeevan, On 6/27/2024 12:45 AM, Jeevan B wrote: Added helper functions to check LOBF status to check weather it is enabled or disabled. Signed-off-by: Jeevan B <jeevan.b@intel.com><mailto:jeevan.b@intel.com> --- lib/igt_kms.c | 23 +++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 174bbe6c4..1f0243eb6 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6071,6 +6071,29 @@ void igt_dump_crtcs_fd(int drmfd) drmModeFreeResources(mode_resources); } +/** + * igt_get_i915_edp_lobf_info + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Return: True if its enabled. + */ +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name) Small nitpick, can this be igt_get_i915_edp_lobf_status, since we are not reading other info. Also do we need to use aux wake alpm / aux less alpm status or that doesn't matter? Animesh any thoughts from you here? Thanks and Regards Kunal Joshi I also feel aux-less and aux-wake info can be optional for igt, as a debug info we are publishing through the same lobf-debugfs entry from kernel. Lobf-status maybe better though do not have any strong objection on lobf-info. Regards, Animesh +{ + char buf[24]; + int fd, res; + + fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY); + igt_assert(fd >= 0); + + res = igt_debugfs_simple_read(fd, "i915_edp_lobf_info", buf, sizeof(buf)); + igt_require(res > 0); + + close(fd); + + return strstr(buf, "LOBF status: enabled"); +} + /** * igt_get_output_max_bpc: * @drmfd: A drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 01604dac9..5b1591631 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1195,6 +1195,7 @@ void igt_require_pipe(igt_display_t *display, void igt_dump_connectors_fd(int drmfd); void igt_dump_crtcs_fd(int drmfd); bool igt_override_all_active_output_modes_to_fit_bw(igt_display_t *display); +bool igt_get_i915_edp_lobf_info(int drmfd, char *connector_name); unsigned int igt_get_output_max_bpc(int drmfd, char *connector_name); unsigned int igt_get_pipe_current_bpc(int drmfd, enum pipe pipe); void igt_assert_output_bpc_equal(int drmfd, enum pipe pipe, [-- Attachment #2: Type: text/html, Size: 7511 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/2] RFC: tests/kms_vrr: Add new test to validate LOBF 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-06-26 19:15 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B @ 2024-06-26 19:15 ` Jeevan B 2024-07-03 10:16 ` [i-g-t,2/2] " Joshi, Kunal1 2024-06-26 21:39 ` ✓ Fi.CI.BAT: success for New test to validate link-off between active regions (LOBF) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Jeevan B @ 2024-06-26 19:15 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, animesh.manna, Jeevan B Validate pseudo static refresh rate changes in the VRR with fixed refresh rate framework. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_vrr.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 50 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 2ea90cd8e..2134e8668 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -37,6 +37,11 @@ #include <signal.h> /** + * SUBTEST: lobf + * Description: Test to validate link-off between active frames in non-psr + * operation + * Functionality: LOBF + * * SUBTEST: cmrr * Description: Test to validate the content rate to exactly match with the * requested rate without any frame drops. @@ -106,7 +111,8 @@ enum { TEST_FASTSET = 1 << 7, TEST_MAXMIN = 1 << 8, TEST_CMRR = 1 << 9, - TEST_NEGATIVE = 1 << 10, + TEST_LINK_OFF = 1 << 10, + TEST_NEGATIVE = 1 << 11, }; enum { @@ -784,6 +790,41 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu } } +static void +test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) +{ + bool change_mode = false; + time_t startTime = time(NULL); + time_t secs = 4, change_time = 3; + igt_plane_t *primary; + drmModeModeInfo mode = *igt_output_get_mode(output); + + igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n", + output->name, kmstest_pipe_name(pipe), data->range.min, data->range.max); + + igt_require(output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP); + igt_require(!igt_get_i915_edp_lobf_info(data->drm_fd, output->name)); + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_create_color_fb(data->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, + 1, 1, 1, &data->fb[0]); + + igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]); + + while (time(NULL) - startTime < secs) { + igt_plane_set_fb(primary, &data->fb[0]); + igt_display_commit(&data->display); + if (!change_mode && time(NULL) - startTime >= change_time) { + igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]); + change_time = true; + } + } + + igt_assert_f(igt_get_i915_edp_lobf_info(data->drm_fd, output->name), + "LOBF not enabled\n"); +} + static void test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) { @@ -1030,13 +1071,20 @@ igt_main_args("drs:", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic("seamless-rr-switch-virtual") run_vrr_test(&data, test_seamless_virtual_rr_basic, TEST_SEAMLESS_VIRTUAL_RR); - igt_describe("Test to validate the the content rate exactly match with the " + igt_describe("Test to validate the content rate exactly match with the " "requested rate without any frame drops."); igt_subtest_with_dynamic("cmrr") { igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); run_vrr_test(&data, test_cmrr, TEST_CMRR); } + igt_describe("Test to validate the link-off between active frames in " + "non-PSR operation."); + igt_subtest_with_dynamic("lobf") { + igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 20); + + run_vrr_test(&data, test_lobf, TEST_LINK_OFF); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate LOBF 2024-06-26 19:15 ` [PATCH i-g-t 2/2] RFC: tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-07-03 10:16 ` Joshi, Kunal1 2024-07-03 10:19 ` B, Jeevan 0 siblings, 1 reply; 12+ messages in thread From: Joshi, Kunal1 @ 2024-07-03 10:16 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: animesh.manna On 6/27/2024 12:45 AM, Jeevan B wrote: > Validate pseudo static refresh rate changes in the VRR with > fixed refresh rate framework. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> Hello Jeevan, Can you add a HAX patch including this test in fast-feedback for both xe and i915, So we can get results from CI. Thanks and Regards Kunal Joshi ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate LOBF 2024-07-03 10:16 ` [i-g-t,2/2] " Joshi, Kunal1 @ 2024-07-03 10:19 ` B, Jeevan 2024-07-03 11:55 ` Manna, Animesh 0 siblings, 1 reply; 12+ messages in thread From: B, Jeevan @ 2024-07-03 10:19 UTC (permalink / raw) To: Joshi, Kunal1, igt-dev@lists.freedesktop.org, Manna, Animesh @Manna, Animesh I think this cannot be tested as VRR changes are yet to be merged Animesh please confirm. > -----Original Message----- > From: Joshi, Kunal1 <kunal1.joshi@intel.com> > Sent: Wednesday, July 3, 2024 3:46 PM > To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org > Cc: Manna, Animesh <animesh.manna@intel.com> > Subject: Re: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate LOBF > > > On 6/27/2024 12:45 AM, Jeevan B wrote: > > Validate pseudo static refresh rate changes in the VRR with fixed > > refresh rate framework. > > > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > Hello Jeevan, > > Can you add a HAX patch including this test in fast-feedback for both xe and > i915, So we can get results from CI. > > > Thanks and Regards > Kunal Joshi ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate LOBF 2024-07-03 10:19 ` B, Jeevan @ 2024-07-03 11:55 ` Manna, Animesh 0 siblings, 0 replies; 12+ messages in thread From: Manna, Animesh @ 2024-07-03 11:55 UTC (permalink / raw) To: B, Jeevan, Joshi, Kunal1, igt-dev@lists.freedesktop.org LOBF has dependency on adaptive sync fixed refresh rate mode and kernel development is ongoing. Patches are posted in mailing list. Regards, Animesh > -----Original Message----- > From: B, Jeevan <jeevan.b@intel.com> > Sent: Wednesday, July 3, 2024 3:50 PM > To: Joshi, Kunal1 <kunal1.joshi@intel.com>; igt-dev@lists.freedesktop.org; > Manna, Animesh <animesh.manna@intel.com> > Subject: RE: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate LOBF > > @Manna, Animesh I think this cannot be tested as VRR changes are yet to be > merged Animesh please confirm. > > > -----Original Message----- > > From: Joshi, Kunal1 <kunal1.joshi@intel.com> > > Sent: Wednesday, July 3, 2024 3:46 PM > > To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org > > Cc: Manna, Animesh <animesh.manna@intel.com> > > Subject: Re: [i-g-t,2/2] RFC: tests/kms_vrr: Add new test to validate > > LOBF > > > > > > On 6/27/2024 12:45 AM, Jeevan B wrote: > > > Validate pseudo static refresh rate changes in the VRR with fixed > > > refresh rate framework. > > > > > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > > Hello Jeevan, > > > > Can you add a HAX patch including this test in fast-feedback for both > > xe and i915, So we can get results from CI. > > > > > > Thanks and Regards > > Kunal Joshi ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for New test to validate link-off between active regions (LOBF) 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-06-26 19:15 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B 2024-06-26 19:15 ` [PATCH i-g-t 2/2] RFC: tests/kms_vrr: Add new test to validate LOBF Jeevan B @ 2024-06-26 21:39 ` Patchwork 2024-06-26 21:51 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-26 21:39 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5895 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) URL : https://patchwork.freedesktop.org/series/135446/ State : success == Summary == CI Bug Log - changes from CI_DRM_15009 -> IGTPW_11322 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/index.html Participating hosts (41 -> 41) ------------------------------ Additional (2): bat-dg2-13 bat-adlp-9 Missing (2): fi-snb-2520m fi-kbl-8809g Known issues ------------ Here are the changes found in IGTPW_11322 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][4] ([i915#6621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@i915_pm_rps@basic-api.html * igt@kms_chamelium_edid@vga-edid-read: - bat-dg2-13: NOTRUN -> [SKIP][5] ([Intel XE#484] / [i915#4550]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-dg2-13/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-9: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adlp-9: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#3840]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlp-9: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adlp-9: NOTRUN -> [SKIP][9] ([i915#9812]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#3555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][12] ([i915#3291] / [i915#3708]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-adlp-9/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-arls-2: [DMESG-WARN][13] ([i915#7507]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4550 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7904 -> IGTPW_11322 CI-20190529: 20190529 CI_DRM_15009: 39235fee2ef6c0933097ee921c86a676dba72ada @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11322: 150ef53ebad688eb29c91c116c66131f358abd85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7904: f13702b8e4e847c56da3ef6f0969065d686049c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/index.html [-- Attachment #2: Type: text/html, Size: 6741 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for New test to validate link-off between active regions (LOBF) 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (2 preceding siblings ...) 2024-06-26 21:39 ` ✓ Fi.CI.BAT: success for New test to validate link-off between active regions (LOBF) Patchwork @ 2024-06-26 21:51 ` Patchwork 2024-06-27 7:41 ` ✗ CI.xeFULL: failure " Patchwork 2024-06-28 2:32 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-26 21:51 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1941 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) URL : https://patchwork.freedesktop.org/series/135446/ State : success == Summary == CI Bug Log - changes from XEIGT_7904_BAT -> XEIGTPW_11322_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11322_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - {bat-lnl-1}: [DMESG-WARN][1] ([Intel XE#1330]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 Build changes ------------- * IGT: IGT_7904 -> IGTPW_11322 * Linux: xe-1535-c02b84a0d04c551044f5b479e6599692c7c1f954 -> xe-1536-39235fee2ef6c0933097ee921c86a676dba72ada IGTPW_11322: 150ef53ebad688eb29c91c116c66131f358abd85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7904: f13702b8e4e847c56da3ef6f0969065d686049c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1535-c02b84a0d04c551044f5b479e6599692c7c1f954: c02b84a0d04c551044f5b479e6599692c7c1f954 xe-1536-39235fee2ef6c0933097ee921c86a676dba72ada: 39235fee2ef6c0933097ee921c86a676dba72ada == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/index.html [-- Attachment #2: Type: text/html, Size: 2527 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for New test to validate link-off between active regions (LOBF) 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (3 preceding siblings ...) 2024-06-26 21:51 ` ✓ CI.xeBAT: " Patchwork @ 2024-06-27 7:41 ` Patchwork 2024-06-28 2:32 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-27 7:41 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 29902 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) URL : https://patchwork.freedesktop.org/series/135446/ State : failure == Summary == CI Bug Log - changes from XEIGT_7904_full -> XEIGTPW_11322_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11322_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11322_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11322_full: ### IGT changes ### #### Possible regressions #### * igt@kms_sequence@queue-idle@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@kms_sequence@queue-idle@pipe-b-hdmi-a-6.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_sequence@queue-idle@pipe-b-hdmi-a-6.html * {igt@kms_vrr@lobf} (NEW): - {shard-lnl}: NOTRUN -> [CRASH][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-7/igt@kms_vrr@lobf.html * {igt@kms_vrr@lobf@pipe-a-edp-1} (NEW): - {shard-lnl}: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-7/igt@kms_vrr@lobf@pipe-a-edp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - {shard-lnl}: [SKIP][5] ([Intel XE#1124]) -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * {igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p}: - {shard-lnl}: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt: - {shard-lnl}: NOTRUN -> [INCOMPLETE][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-blt.html New tests --------- New tests have been introduced between XEIGT_7904_full and XEIGTPW_11322_full: ### New IGT tests (2) ### * igt@kms_vrr@lobf: - Statuses : 1 crash(s) 1 skip(s) - Exec time: [0.0, 2.68] s * igt@kms_vrr@lobf@pipe-a-edp-1: - Statuses : 1 fail(s) - Exec time: [2.51] s Known issues ------------ Here are the changes found in XEIGTPW_11322_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#308]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][17] ([Intel XE#616]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-6.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][18] ([Intel XE#1551]) +1 other test dmesg-fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#323]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#1214] / [Intel XE#877]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-434/igt@kms_flip@2x-flip-vs-panning-interruptible.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend@bc-hdmi-a6-dp4: - shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1195]) +4 other tests incomplete [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend@bc-hdmi-a6-dp4.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend@bc-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1195] / [Intel XE#2049]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-dp4.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#653]) +11 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][28] -> [FAIL][29] ([Intel XE#616]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#870]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_pm_backlight@fade.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1122] / [Intel XE#1201]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#929]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-463/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1149] / [Intel XE#1201]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#327]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_sequence@queue-idle: - shard-dg2-set2: [PASS][39] -> [ABORT][40] ([Intel XE#1553]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@kms_sequence@queue-idle.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_sequence@queue-idle.html * igt@kms_sequence@queue-idle@pipe-b-dp-4: - shard-dg2-set2: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#1214] / [Intel XE#1553]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@kms_sequence@queue-idle@pipe-b-dp-4.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-435/igt@kms_sequence@queue-idle@pipe-b-dp-4.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#1500]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][44] -> [FAIL][45] ([Intel XE#771] / [Intel XE#899]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#899]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html * {igt@kms_vrr@lobf} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#756]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1126] / [Intel XE#1201]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][52] -> [TIMEOUT][53] ([Intel XE#1473] / [Intel XE#392]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-large-external: - shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#1195] / [Intel XE#1473]) +2 other tests incomplete [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-435/igt@xe_evict@evict-large-external.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-463/igt@xe_evict@evict-large-external.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][56] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@xe_evict@evict-threads-large.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#288]) +15 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_reset@gt-reset-stress: - shard-dg2-set2: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#1214] / [Intel XE#2046]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1173]) +3 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#366]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s3-multiple-execs: - shard-dg2-set2: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#1214]) +6 other tests dmesg-warn [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-463/igt@xe_pm@s4-basic-exec.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@xe_pm@s4-basic-exec.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [DMESG-WARN][66] ([Intel XE#1214]) -> [PASS][67] +1 other test pass [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - {shard-lnl}: [FAIL][68] ([Intel XE#1659]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg2-set2: [DMESG-WARN][70] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][71] +1 other test pass [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-463/igt@kms_cursor_legacy@torture-move@pipe-a.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_flip@blocking-absolute-wf_vblank: - shard-dg2-set2: [INCOMPLETE][72] ([Intel XE#1150] / [Intel XE#1195]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-463/igt@kms_flip@blocking-absolute-wf_vblank.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_flip@blocking-absolute-wf_vblank.html * igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a6: - shard-dg2-set2: [INCOMPLETE][74] ([Intel XE#1195]) -> [PASS][75] +2 other tests pass [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-463/igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a6.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_flip@blocking-absolute-wf_vblank@b-hdmi-a6.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][76] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-434/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html * igt@kms_psr@fbc-psr-suspend@edp-1: - {shard-lnl}: [DMESG-WARN][78] ([Intel XE#2052]) -> [PASS][79] +6 other tests pass [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-lnl-2/igt@kms_psr@fbc-psr-suspend@edp-1.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-lnl-7/igt@kms_psr@fbc-psr-suspend@edp-1.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][80] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][82] ([Intel XE#2105]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [SKIP][84] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-435/igt@xe_live_ktest@xe_bo.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@xe_live_ktest@xe_bo.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][86] ([Intel XE#1214] / [Intel XE#569]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-464/igt@xe_pm@s3-vm-bind-prefetch.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@kms_content_protection@legacy: - shard-dg2-set2: [INCOMPLETE][88] ([Intel XE#1195]) -> [FAIL][89] ([Intel XE#1178]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@kms_content_protection@legacy.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: [DMESG-FAIL][90] -> [FAIL][91] ([Intel XE#1178]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [DMESG-WARN][92] ([Intel XE#1214]) -> [INCOMPLETE][93] ([Intel XE#1195]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [DMESG-WARN][94] ([Intel XE#1214] / [Intel XE#1551]) -> [INCOMPLETE][95] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-433/igt@kms_flip@flip-vs-suspend.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][96] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][97] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) +1 other test timeout [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7904/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1150 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1553]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1553 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2046]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2046 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2052]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2052 [Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 Build changes ------------- * IGT: IGT_7904 -> IGTPW_11322 * Linux: xe-1535-c02b84a0d04c551044f5b479e6599692c7c1f954 -> xe-1536-39235fee2ef6c0933097ee921c86a676dba72ada IGTPW_11322: 150ef53ebad688eb29c91c116c66131f358abd85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7904: f13702b8e4e847c56da3ef6f0969065d686049c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1535-c02b84a0d04c551044f5b479e6599692c7c1f954: c02b84a0d04c551044f5b479e6599692c7c1f954 xe-1536-39235fee2ef6c0933097ee921c86a676dba72ada: 39235fee2ef6c0933097ee921c86a676dba72ada == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11322/index.html [-- Attachment #2: Type: text/html, Size: 34212 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for New test to validate link-off between active regions (LOBF) 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B ` (4 preceding siblings ...) 2024-06-27 7:41 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-06-28 2:32 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-06-28 2:32 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 91800 bytes --] == Series Details == Series: New test to validate link-off between active regions (LOBF) URL : https://patchwork.freedesktop.org/series/135446/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15009_full -> IGTPW_11322_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11322_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11322_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11322_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-mtlp: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@gem_busy@close-race.html * igt@i915_module_load@resize-bar: - shard-dg2: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@i915_module_load@resize-bar.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * {igt@kms_vrr@lobf} (NEW): - shard-dg2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-2/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@kms_vrr@lobf.html - shard-mtlp: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_vrr@lobf.html New tests --------- New tests have been introduced between CI_DRM_15009_full and IGTPW_11322_full: ### New IGT tests (16) ### * igt@kms_cursor_crc@cursor-alpha-opaque@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.22, 0.39] s * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.22] s * igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.54] s * igt@kms_cursor_crc@cursor-size-change@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.32, 0.66] s * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [2.54] s * igt@kms_pipe_crc_basic@disable-crc-after-crtc@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.28, 0.42] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.30] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.07] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.08] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.58] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.10] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.28, 0.45] s * igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.28, 0.48] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.61] s * igt@kms_vrr@lobf: - Statuses : 6 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_11322_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@debugfs_test@basic-hwmon.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#9318]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-7/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@isolation@vcs1: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@drm_fdinfo@isolation@vcs1.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: [PASS][20] -> [ABORT][21] ([i915#9846]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_sseu@engines: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4036]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4036]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-11/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +10 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][45] ([i915#7975] / [i915#8213]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#2190]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-2/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][48] ([i915#2190]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][50] ([i915#10378]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][54] ([i915#5493]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +12 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@pf-nonblock: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_pread@exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@gem_pwrite_snooped.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][70] +220 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#8411]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#3323]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-7/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][76] ([i915#3323]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#3323]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][89] ([i915#9820]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [PASS][90] -> [ABORT][91] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6412]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#6590]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#7984]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#5723]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6645]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4212]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-tglu: [PASS][102] -> [FAIL][103] ([i915#10991]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#10333]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-glk: NOTRUN -> [SKIP][108] ([i915#1769]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#5286]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#3638]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][118] +21 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#10656]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10656]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#10656]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +39 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +142 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +19 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +75 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +71 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3742]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4087]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +12 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3116]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][139] ([i915#3116] / [i915#3299]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#7173]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-7/igt@kms_content_protection@lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7118]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7118] / [i915#9424]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#8814]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3359]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3359]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3359]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#3359]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3555]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8814]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#9809]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4213]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][159] +34 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-snb: [PASS][160] -> [SKIP][161] +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9833]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#9833]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8827]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#8588]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#1257]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#8812]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840] / [i915#9053]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4854]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#4854]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#1839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8381]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8381]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][178] +14 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9934]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3637]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-snb: [PASS][182] -> [FAIL][183] ([i915#2122]) +1 other test fail [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8810]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5354]) +15 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#1825]) +25 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#10433] / [i915#3458]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3458]) +8 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#8708]) +16 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][196] +38 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][197] +35 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8708]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#3458]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5439]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8708]) +11 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3023]) +35 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1825]) +49 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#8228]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-7/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4816]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][208] ([i915#10647]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#10226] / [i915#3582]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-x@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3582]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@kms_plane_lowres@tiling-x@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#9423]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9423]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#5176] / [i915#9423]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#5176] / [i915#9423]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#9423]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +8 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#5235]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#5235]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#5235] / [i915#9423]) +11 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#5235]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5354]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5354]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9685]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9685]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9685]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#10139]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#3361]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9340]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][230] -> [SKIP][231] ([i915#9519]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9519]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9519]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#9519]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#6524]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#11520]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#11520]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-5/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#11520]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-18/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#9808]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area@psr2-pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#11520]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9683]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#1072] / [i915#9732]) +8 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9688]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1072] / [i915#9732]) +24 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9732]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-8/igt@kms_psr@psr2-cursor-mmap-cpu.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9673] / [i915#9732]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-11/igt@kms_psr@psr2-cursor-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#1072] / [i915#9732]) +24 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#4235]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-4/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#5289]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#4235] / [i915#5190]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#5289]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][256] ([i915#5465]) +1 other test fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8809]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][259] -> [FAIL][260] ([IGT#2]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-11/igt@kms_sysfs_edid_timing.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8623]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8623]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9906]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#9906]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8808] / [i915#9906]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#9906]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9906]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][268] ([i915#2437]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2437]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][270] ([i915#2437]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#2436]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#7387]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html * igt@perf@invalid-create-userspace-config: - shard-snb: NOTRUN -> [SKIP][273] +19 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb5/igt@perf@invalid-create-userspace-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][274] ([i915#7484]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#2435]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][276] -> [FAIL][277] ([i915#4349]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vcs0: - shard-glk: NOTRUN -> [DMESG-WARN][278] ([i915#118]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk3/igt@perf_pmu@busy-double-start@vcs0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#3708]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3708] / [i915#4077]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9917]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#9917]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#9917]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][284] ([i915#9781]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk5/igt@syncobj_timeline@invalid-wait-zero-handles.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][285] ([i915#7742]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][287] ([i915#6268]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][289] ([i915#5784]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg1-17/igt@gem_eio@unwedge-stress.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [TIMEOUT][291] ([i915#3778] / [i915#7016]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][293] ([i915#2842]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][295] ([i915#9820]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][297] ([i915#7790]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb6/igt@i915_pm_rps@reset.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb2/igt@i915_pm_rps@reset.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][299] ([i915#2346]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1: - shard-rkl: [FAIL][301] ([i915#2122]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1: - shard-snb: [FAIL][303] ([i915#10826]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-vga1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [FAIL][305] ([i915#2122]) -> [PASS][306] +3 other tests pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][307] ([i915#6880]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][309] ([i915#9519]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][311] ([i915#9519]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_sysfs_edid_timing: - shard-snb: [FAIL][313] ([IGT#2] / [i915#6493]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-snb7/igt@kms_sysfs_edid_timing.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-snb4/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][315] ([i915#9196]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-glk: [FAIL][317] ([i915#9196]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-glk8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-glk1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [WARN][319] ([i915#2681]) -> [FAIL][320] ([i915#3591]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu: [FAIL][321] ([i915#3591]) -> [WARN][322] ([i915#2681]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][323] ([i915#3458]) -> [SKIP][324] ([i915#10433] / [i915#3458]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][325] ([i915#9295]) -> [SKIP][326] ([i915#3361]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: [SKIP][327] ([i915#1072] / [i915#9732]) -> [SKIP][328] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-10/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: [SKIP][329] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][330] ([i915#1072] / [i915#9732]) +10 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15009/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/shard-dg2-10/igt@kms_psr@psr2-primary-mmap-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7904 -> IGTPW_11322 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15009: 39235fee2ef6c0933097ee921c86a676dba72ada @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11322: 150ef53ebad688eb29c91c116c66131f358abd85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7904: f13702b8e4e847c56da3ef6f0969065d686049c5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11322/index.html [-- Attachment #2: Type: text/html, Size: 114087 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-07-17 8:51 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-26 19:15 [PATCH i-g-t 0/2] New test to validate link-off between active regions (LOBF) Jeevan B 2024-06-26 19:15 ` [PATCH i-g-t 1/2] lib/igt_kms: Added library functions for LOBF status Jeevan B 2024-07-17 4:45 ` [i-g-t,1/2] " Joshi, Kunal1 2024-07-17 8:51 ` Manna, Animesh 2024-06-26 19:15 ` [PATCH i-g-t 2/2] RFC: tests/kms_vrr: Add new test to validate LOBF Jeevan B 2024-07-03 10:16 ` [i-g-t,2/2] " Joshi, Kunal1 2024-07-03 10:19 ` B, Jeevan 2024-07-03 11:55 ` Manna, Animesh 2024-06-26 21:39 ` ✓ Fi.CI.BAT: success for New test to validate link-off between active regions (LOBF) Patchwork 2024-06-26 21:51 ` ✓ CI.xeBAT: " Patchwork 2024-06-27 7:41 ` ✗ CI.xeFULL: failure " Patchwork 2024-06-28 2:32 ` ✗ 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