* [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC
@ 2024-11-21 10:45 Jeevan B
2024-11-21 10:45 ` [PATCH i-g-t 1/2] " Jeevan B
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Jeevan B @ 2024-11-21 10:45 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Jeevan B
increase big_joiner limitation to 6k from 5k for display version
greater than 30.
Apart from lib following tests are modified:
tests/intel/kms_pm_lpsp.c
tests/kms_flip.c
tests/kms_setmode.c
v2: added bspec no. and split the patch.
v3: remove unrelated change.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (2):
lib/igt_kms: Add 6k resolution support for a single CRTC
Fix bigjoiner compatibility checks for connector modes
lib/igt_kms.c | 22 ++++++++++++++--------
lib/igt_kms.h | 5 +++--
tests/intel/kms_pm_lpsp.c | 4 ++--
tests/kms_flip.c | 4 ++--
tests/kms_setmode.c | 4 ++--
5 files changed, 23 insertions(+), 16 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kms: Add 6k resolution support for a single CRTC 2024-11-21 10:45 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B @ 2024-11-21 10:45 ` Jeevan B 2024-11-21 17:19 ` Sharma, Swati2 2024-11-21 10:45 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Jeevan B @ 2024-11-21 10:45 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B increase big_joiner limitation to 6k from 5k for display version greater than 30. Bspec: 68858 Signed-off-by: Jeevan B <jeevan.b@intel.com> --- lib/igt_kms.c | 22 ++++++++++++++-------- lib/igt_kms.h | 5 +++-- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 76f32e1e0..fe5cea33d 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6355,6 +6355,7 @@ int igt_get_max_dotclock(int fd) /** * igt_bigjoiner_possible: + * @fd: drm file descriptor * @mode: libdrm mode * @max_dotclock: Max pixel clock frequency * @@ -6363,10 +6364,13 @@ int igt_get_max_dotclock(int fd) * * Returns: True if mode requires Bigjoiner, else False. */ -bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock) +bool igt_bigjoiner_possible(int fd, drmModeModeInfo *mode, int max_dotclock) { - return (mode->hdisplay > MAX_HDISPLAY_PER_PIPE || - mode->clock > max_dotclock); + int max_hdisplay, dev_id; + dev_id = intel_get_drm_devid(fd); + max_hdisplay = (intel_display_ver(dev_id) >= 30) ? HDISPLAY_6K_PER_PIPE : + HDISPLAY_5K_PER_PIPE; + return (mode->hdisplay > max_hdisplay || mode->clock > max_dotclock); } /** @@ -6387,10 +6391,10 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, bool found = false; igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - found = igt_bigjoiner_possible(&connector->modes[0], max_dotclock); + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); if (!found) { igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - found = igt_bigjoiner_possible(&connector->modes[0], max_dotclock); + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); } if (found) *mode = connector->modes[0]; @@ -6409,7 +6413,7 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, */ bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock) { - return (mode->hdisplay > 2 * MAX_HDISPLAY_PER_PIPE || + return (mode->hdisplay > 2 * HDISPLAY_5K_PER_PIPE || mode->clock > 2 * max_dotclock); } @@ -6574,7 +6578,8 @@ bool igt_check_bigjoiner_support(igt_display_t *display) * - current & previous crtcs are consecutive */ for (i = 0; i < pipes_in_use; i++) { - if (pipes[i].force_joiner || igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) { + if (pipes[i].force_joiner || igt_bigjoiner_possible(display->drm_fd, pipes[i].mode, + max_dotclock)) { igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n", kmstest_pipe_name(pipes[i].idx), igt_output_name(pipes[i].output), @@ -6601,7 +6606,8 @@ bool igt_check_bigjoiner_support(igt_display_t *display) } } - if ((i > 0) && (pipes[i - 1].force_joiner || igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock))) { + if ((i > 0) && (pipes[i - 1].force_joiner || igt_bigjoiner_possible(display->drm_fd, + pipes[i - 1].mode, max_dotclock))) { igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n", kmstest_pipe_name(pipes[i - 1].idx), igt_output_name(pipes[i - 1].output), diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 301f370df..547b45ae8 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -146,7 +146,8 @@ const char *kmstest_scaling_filter_str(int filter); const char *kmstest_dsc_output_format_str(int output_format); void kmstest_dump_mode(drmModeModeInfo *mode); -#define MAX_HDISPLAY_PER_PIPE 5120 +#define HDISPLAY_6K_PER_PIPE 6144 +#define HDISPLAY_5K_PER_PIPE 5120 int kmstest_get_pipe_from_crtc_id(int fd, int crtc_id); void kmstest_set_vt_graphics_mode(void); @@ -1241,7 +1242,7 @@ void igt_sort_connector_modes(drmModeConnector *connector, bool igt_max_bpc_constraint(igt_display_t *display, enum pipe pipe, igt_output_t *output, int bpc); int igt_get_max_dotclock(int fd); -bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock); +bool igt_bigjoiner_possible(int fd, drmModeModeInfo *mode, int max_dotclock); bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, int max_dotclock, drmModeModeInfo *mode); bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock); -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kms: Add 6k resolution support for a single CRTC 2024-11-21 10:45 ` [PATCH i-g-t 1/2] " Jeevan B @ 2024-11-21 17:19 ` Sharma, Swati2 0 siblings, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2024-11-21 17:19 UTC (permalink / raw) To: Jeevan B, igt-dev LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 21-11-2024 04:15 pm, Jeevan B wrote: > increase big_joiner limitation to 6k from 5k for display version > greater than 30. > > Bspec: 68858 > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > lib/igt_kms.c | 22 ++++++++++++++-------- > lib/igt_kms.h | 5 +++-- > 2 files changed, 17 insertions(+), 10 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 76f32e1e0..fe5cea33d 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6355,6 +6355,7 @@ int igt_get_max_dotclock(int fd) > > /** > * igt_bigjoiner_possible: > + * @fd: drm file descriptor > * @mode: libdrm mode > * @max_dotclock: Max pixel clock frequency > * > @@ -6363,10 +6364,13 @@ int igt_get_max_dotclock(int fd) > * > * Returns: True if mode requires Bigjoiner, else False. > */ > -bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock) > +bool igt_bigjoiner_possible(int fd, drmModeModeInfo *mode, int max_dotclock) > { > - return (mode->hdisplay > MAX_HDISPLAY_PER_PIPE || > - mode->clock > max_dotclock); > + int max_hdisplay, dev_id; > + dev_id = intel_get_drm_devid(fd); > + max_hdisplay = (intel_display_ver(dev_id) >= 30) ? HDISPLAY_6K_PER_PIPE : > + HDISPLAY_5K_PER_PIPE; > + return (mode->hdisplay > max_hdisplay || mode->clock > max_dotclock); > } > > /** > @@ -6387,10 +6391,10 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, > bool found = false; > > igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > - found = igt_bigjoiner_possible(&connector->modes[0], max_dotclock); > + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); > if (!found) { > igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); > - found = igt_bigjoiner_possible(&connector->modes[0], max_dotclock); > + found = igt_bigjoiner_possible(drm_fd, &connector->modes[0], max_dotclock); > } > if (found) > *mode = connector->modes[0]; > @@ -6409,7 +6413,7 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, > */ > bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock) > { > - return (mode->hdisplay > 2 * MAX_HDISPLAY_PER_PIPE || > + return (mode->hdisplay > 2 * HDISPLAY_5K_PER_PIPE || > mode->clock > 2 * max_dotclock); > } > > @@ -6574,7 +6578,8 @@ bool igt_check_bigjoiner_support(igt_display_t *display) > * - current & previous crtcs are consecutive > */ > for (i = 0; i < pipes_in_use; i++) { > - if (pipes[i].force_joiner || igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) { > + if (pipes[i].force_joiner || igt_bigjoiner_possible(display->drm_fd, pipes[i].mode, > + max_dotclock)) { > igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n", > kmstest_pipe_name(pipes[i].idx), > igt_output_name(pipes[i].output), > @@ -6601,7 +6606,8 @@ bool igt_check_bigjoiner_support(igt_display_t *display) > } > } > > - if ((i > 0) && (pipes[i - 1].force_joiner || igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock))) { > + if ((i > 0) && (pipes[i - 1].force_joiner || igt_bigjoiner_possible(display->drm_fd, > + pipes[i - 1].mode, max_dotclock))) { > igt_info("pipe-%s-%s: (Max dot-clock: %d KHz), force joiner: %s\n", > kmstest_pipe_name(pipes[i - 1].idx), > igt_output_name(pipes[i - 1].output), > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 301f370df..547b45ae8 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -146,7 +146,8 @@ const char *kmstest_scaling_filter_str(int filter); > const char *kmstest_dsc_output_format_str(int output_format); > > void kmstest_dump_mode(drmModeModeInfo *mode); > -#define MAX_HDISPLAY_PER_PIPE 5120 > +#define HDISPLAY_6K_PER_PIPE 6144 > +#define HDISPLAY_5K_PER_PIPE 5120 > > int kmstest_get_pipe_from_crtc_id(int fd, int crtc_id); > void kmstest_set_vt_graphics_mode(void); > @@ -1241,7 +1242,7 @@ void igt_sort_connector_modes(drmModeConnector *connector, > bool igt_max_bpc_constraint(igt_display_t *display, enum pipe pipe, > igt_output_t *output, int bpc); > int igt_get_max_dotclock(int fd); > -bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock); > +bool igt_bigjoiner_possible(int fd, drmModeModeInfo *mode, int max_dotclock); > bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, > int max_dotclock, drmModeModeInfo *mode); > bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes 2024-11-21 10:45 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B 2024-11-21 10:45 ` [PATCH i-g-t 1/2] " Jeevan B @ 2024-11-21 10:45 ` Jeevan B 2024-11-21 17:21 ` Sharma, Swati2 2024-11-21 12:00 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) Patchwork 2024-11-21 14:49 ` ✗ Xe.CI.Full: failure " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Jeevan B @ 2024-11-21 10:45 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B fix bigjoiner compatibility checks by adding drm_fd argument. added unsupported config checks for bigjoiner modes in display tests. v2: remove unrelated change. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/intel/kms_pm_lpsp.c | 4 ++-- tests/kms_flip.c | 4 ++-- tests/kms_setmode.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c index 889da42de..74e9d799a 100644 --- a/tests/intel/kms_pm_lpsp.c +++ b/tests/intel/kms_pm_lpsp.c @@ -166,11 +166,11 @@ static bool test_constraint(data_t *data) if (igt_check_force_joiner_status(data->drm_fd, data->output->name)) return false; - if (igt_bigjoiner_possible(mode, max_dotclock)) { + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) { for_each_connector_mode(data->output) { mode = &data->output->config.connector->modes[j__]; - if (igt_bigjoiner_possible(mode, max_dotclock)) + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) continue; igt_output_override_mode(data->output, mode); diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 88cd41083..3ad4d0afb 100755 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -1756,11 +1756,11 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs, o->kconnector[i - 1]->connector_type_id); if (((igt_check_force_joiner_status(drm_fd, conn_name) || - igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &o->kmode[i], max_dotclock)) && ((crtc_idxs[i] >= (total_crtcs - 1)) || ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) || ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || - igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &o->kmode[i - 1], max_dotclock)) && (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) { igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name); diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index bc7b8fabb..d61cfeb9a 100644 --- a/tests/kms_setmode.c +++ b/tests/kms_setmode.c @@ -736,11 +736,11 @@ static void test_one_combination(const struct test_config *tconf, * - current & previous crtcs are consecutive */ if (((igt_check_force_joiner_status(drm_fd, conn_name) || - igt_bigjoiner_possible(&crtc->mode, max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || - igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) { igt_info("Combo: %s is not possible with selected mode(s).\n", test_name); goto out; -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes 2024-11-21 10:45 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B @ 2024-11-21 17:21 ` Sharma, Swati2 0 siblings, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2024-11-21 17:21 UTC (permalink / raw) To: Jeevan B, igt-dev Hi Jeevan, Please fix the subject. Add tests/kms: in the beginning of subject. With that fixed, patch LGTM. Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 21-11-2024 04:15 pm, Jeevan B wrote: > fix bigjoiner compatibility checks by adding drm_fd argument. > added unsupported config checks for bigjoiner modes in display tests. > > v2: remove unrelated change. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_pm_lpsp.c | 4 ++-- > tests/kms_flip.c | 4 ++-- > tests/kms_setmode.c | 4 ++-- > 3 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c > index 889da42de..74e9d799a 100644 > --- a/tests/intel/kms_pm_lpsp.c > +++ b/tests/intel/kms_pm_lpsp.c > @@ -166,11 +166,11 @@ static bool test_constraint(data_t *data) > if (igt_check_force_joiner_status(data->drm_fd, data->output->name)) > return false; > > - if (igt_bigjoiner_possible(mode, max_dotclock)) { > + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) { > for_each_connector_mode(data->output) { > mode = &data->output->config.connector->modes[j__]; > > - if (igt_bigjoiner_possible(mode, max_dotclock)) > + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) > continue; > > igt_output_override_mode(data->output, mode); > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > index 88cd41083..3ad4d0afb 100755 > --- a/tests/kms_flip.c > +++ b/tests/kms_flip.c > @@ -1756,11 +1756,11 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs, > o->kconnector[i - 1]->connector_type_id); > > if (((igt_check_force_joiner_status(drm_fd, conn_name) || > - igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &o->kmode[i], max_dotclock)) && > ((crtc_idxs[i] >= (total_crtcs - 1)) || > ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) || > ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || > - igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &o->kmode[i - 1], max_dotclock)) && > (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) { > > igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name); > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > index bc7b8fabb..d61cfeb9a 100644 > --- a/tests/kms_setmode.c > +++ b/tests/kms_setmode.c > @@ -736,11 +736,11 @@ static void test_one_combination(const struct test_config *tconf, > * - current & previous crtcs are consecutive > */ > if (((igt_check_force_joiner_status(drm_fd, conn_name) || > - igt_bigjoiner_possible(&crtc->mode, max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && > ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || > ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || > ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || > - igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && > (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) { > igt_info("Combo: %s is not possible with selected mode(s).\n", test_name); > goto out; ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) 2024-11-21 10:45 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B 2024-11-21 10:45 ` [PATCH i-g-t 1/2] " Jeevan B 2024-11-21 10:45 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B @ 2024-11-21 12:00 ` Patchwork 2024-11-21 14:49 ` ✗ Xe.CI.Full: failure " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-21 12:00 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11932 bytes --] == Series Details == Series: lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) URL : https://patchwork.freedesktop.org/series/141169/ State : success == Summary == CI Bug Log - changes from XEIGT_8118_BAT -> XEIGTPW_12155_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12155_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-lnl-2: NOTRUN -> [SKIP][3] ([Intel XE#2229]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#2229]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch: - bat-lnl-1: [DMESG-FAIL][5] ([Intel XE#3466]) -> [PASS][6] +33 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-lnl-2: [DMESG-FAIL][7] ([Intel XE#3466]) -> [PASS][8] +33 other tests pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_exec_threads@threads-basic: - bat-lnl-1: [DMESG-WARN][9] ([Intel XE#3466]) -> [PASS][10] +3 other tests pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_exec_threads@threads-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-1/igt@xe_exec_threads@threads-basic.html * igt@xe_exec_threads@threads-mixed-basic: - bat-lnl-2: [DMESG-WARN][11] ([Intel XE#3466]) -> [PASS][12] +3 other tests pass [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html * igt@xe_live_ktest@xe_migrate: - bat-lnl-2: [SKIP][13] ([Intel XE#1192]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html - bat-lnl-1: [SKIP][15] ([Intel XE#1192]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-adlp-7: [SKIP][17] ([Intel XE#3443] / [Intel XE#455]) -> [SKIP][18] ([Intel XE#455]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@kms_dsc@dsc-basic.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@kms_dsc@dsc-basic.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: [SKIP][19] ([Intel XE#261] / [Intel XE#3443] / [Intel XE#688]) -> [SKIP][20] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_evict@evict-beng-small.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-adlp-7: [SKIP][21] ([Intel XE#3443] / [Intel XE#688]) -> [SKIP][22] ([Intel XE#688]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: [SKIP][23] ([Intel XE#288] / [Intel XE#3443]) -> [SKIP][24] ([Intel XE#288]) +32 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo: - bat-lnl-1: [SKIP][25] ([Intel XE#1192]) -> [SKIP][26] ([Intel XE#2229]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-1/igt@xe_live_ktest@xe_bo.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-1/igt@xe_live_ktest@xe_bo.html - bat-lnl-2: [SKIP][27] ([Intel XE#1192]) -> [SKIP][28] ([Intel XE#2229]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-2/igt@xe_live_ktest@xe_bo.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-adlp-7: [SKIP][29] ([Intel XE#2229] / [Intel XE#3443] / [Intel XE#455]) -> [SKIP][30] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: [SKIP][31] ([Intel XE#2229] / [Intel XE#3443]) -> [SKIP][32] ([Intel XE#2229]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@vram: - bat-adlp-7: [SKIP][33] ([Intel XE#1008] / [Intel XE#3443]) -> [SKIP][34] ([Intel XE#1008]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_mmap@vram.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xe2: - bat-atsm-2: [SKIP][35] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][36] ([Intel XE#977]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-atsm-2/igt@xe_pat@pat-index-xe2.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-atsm-2/igt@xe_pat@pat-index-xe2.html - bat-adlp-vf: [SKIP][37] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][38] ([Intel XE#977]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html - bat-adlp-7: [SKIP][39] ([Intel XE#2839] / [Intel XE#3443] / [Intel XE#977]) -> [SKIP][40] ([Intel XE#977]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_pat@pat-index-xe2.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_pat@pat-index-xe2.html - bat-dg2-oem2: [SKIP][41] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][42] ([Intel XE#977]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-adlp-7: [SKIP][43] ([Intel XE#2838] / [Intel XE#3443] / [Intel XE#979]) -> [SKIP][44] ([Intel XE#2838] / [Intel XE#979]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: [SKIP][45] ([Intel XE#2237] / [Intel XE#2245]) -> [SKIP][46] ([Intel XE#2245]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-bmg-2/igt@xe_pat@pat-index-xelp.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-bmg-2/igt@xe_pat@pat-index-xelp.html - bat-bmg-1: [SKIP][47] ([Intel XE#2237] / [Intel XE#2245]) -> [SKIP][48] ([Intel XE#2245]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-bmg-1/igt@xe_pat@pat-index-xelp.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-bmg-1/igt@xe_pat@pat-index-xelp.html - bat-lnl-2: [SKIP][49] ([Intel XE#2237] / [Intel XE#977]) -> [SKIP][50] ([Intel XE#977]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-lnl-2/igt@xe_pat@pat-index-xelp.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-lnl-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-adlp-7: [SKIP][51] ([Intel XE#3443] / [Intel XE#979]) -> [SKIP][52] ([Intel XE#979]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#3443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3443 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12155 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 IGTPW_12155: 12155 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/index.html [-- Attachment #2: Type: text/html, Size: 16574 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) 2024-11-21 10:45 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B ` (2 preceding siblings ...) 2024-11-21 12:00 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) Patchwork @ 2024-11-21 14:49 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-21 14:49 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 136085 bytes --] == Series Details == Series: lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) URL : https://patchwork.freedesktop.org/series/141169/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12155_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12155_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12155_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 (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12155_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotrebind-lateclose: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotrebind-lateclose.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@core_hotunplug@hotrebind-lateclose.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_psr@psr2-no-drrs@edp-1: - shard-lnl: [PASS][6] -> [FAIL][7] +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_psr@psr2-no-drrs@edp-1.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@kms_psr@psr2-no-drrs@edp-1.html * igt@xe_exec_balancer@many-execqueues-cm-parallel-basic: - shard-bmg: [PASS][8] -> [DMESG-WARN][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_exec_balancer@many-execqueues-cm-parallel-basic.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_exec_balancer@many-execqueues-cm-parallel-basic.html * igt@xe_exec_compute_mode@many-userptr-rebind: - shard-lnl: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_exec_compute_mode@many-userptr-rebind.html * igt@xe_vm@mmap-style-bind-either-side-partial: - shard-lnl: [PASS][11] -> [DMESG-WARN][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_vm@mmap-style-bind-either-side-partial.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@xe_vm@mmap-style-bind-either-side-partial.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: NOTRUN -> [DMESG-WARN][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank@c-dp2: - shard-bmg: [DMESG-WARN][14] ([Intel XE#3468]) -> [FAIL][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b: - shard-bmg: [DMESG-WARN][16] ([Intel XE#3468]) -> [DMESG-WARN][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][18] ([Intel XE#3499]) -> [FAIL][19] +4 other tests fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [FAIL][20] ([Intel XE#3499]) -> [FAIL][21] [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][22] ([Intel XE#2961] / [Intel XE#3191]) -> [INCOMPLETE][23] +1 other test incomplete [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_live_ktest@xe_bo.html Known issues ------------ Here are the changes found in XEIGTPW_12155_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1885]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html * igt@fbdev@read: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2134]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@fbdev@read.html * igt@fbdev@write: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2134]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@fbdev@write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3279]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][29] ([Intel XE#1727]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing@pipe-a-hdmi-a-6.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1407]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][31] -> [DMESG-FAIL][32] ([Intel XE#3468]) +20 other tests dmesg-fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2191]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2314] / [Intel XE#2894]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#367]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +132 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +13 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3: - shard-bmg: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#3468]) +106 other tests dmesg-warn [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#3433]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][47] ([Intel XE#1727]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#3113]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2325]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2252]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#3278]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#307]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1178]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_content_protection@lic-type-0.html - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2341]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#3304]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#308]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2321]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [PASS][60] -> [SKIP][61] ([Intel XE#2423] / [i915#2575]) +95 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-64x64.html * igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][62] ([Intel XE#3468]) +4 other tests dmesg-fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2291]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#309]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][67] -> [DMESG-WARN][68] ([Intel XE#877]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2291]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][71] ([Intel XE#3468] / [Intel XE#877]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1508]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#2425]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3070]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2244]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2244]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1138]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1138]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1421]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#2316]) +9 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: NOTRUN -> [FAIL][83] ([Intel XE#2882]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2423] / [i915#2575]) +27 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: NOTRUN -> [FAIL][85] ([Intel XE#886]) +1 other test fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#301] / [Intel XE#3486]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#301]) +4 other tests fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][88] -> [DMESG-FAIL][89] ([Intel XE#1727] / [Intel XE#3468]) +8 other tests dmesg-fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#886]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#455]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397] / [Intel XE#1745]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2380]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2136]) +28 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +8 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2311]) +15 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2136]) +36 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][107] ([Intel XE#2333]) +6 other tests fail [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2312]) +7 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#656]) +22 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#651]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2352]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2313]) +15 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#653]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1503]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#3012]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_lease@lease-get@pipe-d-hdmi-a-3: - shard-bmg: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#1727]) +2 other tests dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_lease@lease-get@pipe-d-hdmi-a-3.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_lease@lease-get@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#2571]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +11 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2763]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#2763]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#718]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@basic-rte: - shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_pm_rpm@basic-rte.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1439] / [Intel XE#3141]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#2446]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1489]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2893]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1489]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2387]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1128]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2850] / [Intel XE#929]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1406]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-6/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#3414]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#3414]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2330]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#1435]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@ts-continuation-modeset-rpm: - shard-bmg: [PASS][145] -> [INCOMPLETE][146] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_vblank@ts-continuation-modeset-rpm.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_vblank@ts-continuation-modeset-rpm.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1499]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#756]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#2423]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@testdisplay.html * igt@xe_ccs@ctrl-surf-copy-new-ctx: - shard-dg2-set2: [PASS][152] -> [SKIP][153] ([Intel XE#1130]) +158 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_ccs@ctrl-surf-copy-new-ctx.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_ccs@ctrl-surf-copy-new-ctx.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2905]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2905]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][157] ([Intel XE#1473]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#688]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1392]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_basic@no-exec-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1130]) +71 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_exec_basic@no-exec-basic-defer-bind.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#1727]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#288]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_threads@threads-hang-fd-userptr: - shard-bmg: NOTRUN -> [DMESG-WARN][165] ([Intel XE#3468]) +12 other tests dmesg-warn [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_exec_threads@threads-hang-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3467] / [Intel XE#3468]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: NOTRUN -> [DMESG-WARN][168] ([Intel XE#3467] / [Intel XE#3468]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#3184]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][171] -> [SKIP][172] ([Intel XE#2229]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#2229]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate: - shard-lnl: [PASS][174] -> [SKIP][175] ([Intel XE#1192]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_live_ktest@xe_migrate.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_live_ktest@xe_migrate.html - shard-bmg: [PASS][176] -> [SKIP][177] ([Intel XE#1192]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][178] ([Intel XE#1999]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2457]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_module_load@force-load.html - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#378]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_module_load@force-load.html * igt@xe_oa@syncs-syncobj-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#2541]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@xe_oa@syncs-syncobj-wait-cfg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][182] ([Intel XE#1173]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#2284] / [Intel XE#366]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2284]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3hot-mocs: - shard-bmg: NOTRUN -> [DMESG-WARN][185] ([Intel XE#1727] / [Intel XE#3468]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s3-exec-after: - shard-bmg: [PASS][186] -> [DMESG-WARN][187] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-exec-after.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2284] / [Intel XE#366]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [PASS][189] -> [ABORT][190] ([Intel XE#1358] / [Intel XE#1607]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@xe_pm@s4-d3hot-basic-exec.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: [PASS][191] -> [DMESG-WARN][192] ([Intel XE#1727] / [Intel XE#3468]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s4-exec-after.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_pm@s4-exec-after.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [PASS][193] -> [DMESG-WARN][194] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#584]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@xe_pm_residency@cpg-basic.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][196] -> [FAIL][197] ([Intel XE#958]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#944]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@query-uc-fw-version-guc: - shard-bmg: NOTRUN -> [DMESG-WARN][199] ([Intel XE#1727]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_query@query-uc-fw-version-guc.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#3342]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [DMESG-WARN][201] ([Intel XE#2919] / [Intel XE#3084]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2-set2: [FAIL][202] ([Intel XE#3440]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_getversion@all-cards.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][204] ([Intel XE#3521]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotreplug-lateclose: - shard-lnl: [ABORT][206] -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@core_hotunplug@hotreplug-lateclose.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][208] ([Intel XE#1885]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@unaligned-write: - shard-dg2-set2: [SKIP][210] ([Intel XE#2134]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@fbdev@unaligned-write.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@fbdev@unaligned-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][212] ([Intel XE#2613]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3: - shard-bmg: [INCOMPLETE][214] -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][216] ([Intel XE#3468]) -> [PASS][217] +26 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][218] ([Intel XE#3466]) -> [PASS][219] +1 other test pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-3/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][220] ([Intel XE#2136]) -> [PASS][221] +17 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][222] ([Intel XE#2705]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][224] ([Intel XE#1475]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2: - shard-bmg: [DMESG-WARN][226] -> [PASS][227] +1 other test pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][228] ([Intel XE#2597]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [SKIP][230] ([Intel XE#2423] / [i915#2575]) -> [PASS][231] +78 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip@busy-flip.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [DMESG-WARN][232] ([Intel XE#3468]) -> [PASS][233] +103 other tests pass [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][234] ([Intel XE#886]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#1195] / [Intel XE#3468]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@basic: - shard-dg2-set2: [SKIP][238] ([Intel XE#2351]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_frontbuffer_tracking@basic.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][240] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][241] +11 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][242] ([Intel XE#3466]) -> [PASS][243] +44 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][244] ([Intel XE#2566]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][246] ([Intel XE#2446]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [DMESG-WARN][248] ([Intel XE#2042]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-41: - shard-dg2-set2: [DMESG-WARN][250] ([Intel XE#3468]) -> [PASS][251] +5 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html * igt@kms_psr@psr2-sprite-render: - shard-lnl: [FAIL][252] ([Intel XE#3536]) -> [PASS][253] +1 other test pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][254] ([Intel XE#2883]) -> [PASS][255] +2 other tests pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][256] ([Intel XE#899]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@query-busy: - shard-bmg: [INCOMPLETE][258] ([Intel XE#1727]) -> [PASS][259] +2 other tests pass [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_vblank@query-busy.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2: - shard-bmg: [DMESG-WARN][260] ([Intel XE#1727]) -> [PASS][261] +8 other tests pass [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-dp-2.html * igt@xe_evict@evict-small-multi-vm: - shard-dg2-set2: [DMESG-WARN][262] ([Intel XE#1727]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_evict@evict-small-multi-vm.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [DMESG-WARN][264] ([Intel XE#3371]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][266] ([Intel XE#3467]) -> [PASS][267] +4 other tests pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo: - shard-lnl: [DMESG-FAIL][268] ([Intel XE#3466]) -> [PASS][269] +9 other tests pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_live_ktest@xe_bo.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [INCOMPLETE][270] ([Intel XE#2998]) -> [PASS][271] +1 other test pass [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][272] ([Intel XE#1192]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_live_ktest@xe_mocs.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][274] ([Intel XE#569]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-2/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][276] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][278] ([Intel XE#1727]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [SKIP][280] ([Intel XE#1130]) -> [PASS][281] +140 other tests pass [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Warnings #### * igt@core_hotunplug@hotreplug: - shard-dg2-set2: [SKIP][282] ([Intel XE#1885]) -> [DMESG-WARN][283] ([Intel XE#3468] / [Intel XE#3521]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@hotreplug.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][284] ([Intel XE#3521]) -> [SKIP][285] ([Intel XE#1885]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing: - shard-dg2-set2: [SKIP][286] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][287] ([Intel XE#1727]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][288] ([Intel XE#316]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][290] ([Intel XE#2136]) -> [SKIP][291] ([Intel XE#316]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][292] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][293] ([Intel XE#316]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][294] ([Intel XE#316]) -> [SKIP][295] ([Intel XE#2136]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][296] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][297] ([Intel XE#1124]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][298] ([Intel XE#2136]) -> [SKIP][299] ([Intel XE#1124]) +4 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][300] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][301] ([Intel XE#619]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][302] ([Intel XE#2136]) -> [SKIP][303] ([Intel XE#610]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][304] ([Intel XE#1124]) -> [SKIP][305] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][306] ([Intel XE#1124]) -> [SKIP][307] ([Intel XE#2136]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#367]) +5 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][310] ([Intel XE#367]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][312] ([Intel XE#2191]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [SKIP][315] ([Intel XE#2191]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#2907]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][318] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][319] ([Intel XE#2136]) +10 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][322] ([Intel XE#2907]) -> [SKIP][323] ([Intel XE#2136]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][324] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][326] ([Intel XE#2136]) -> [SKIP][327] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][329] ([Intel XE#314]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][330] ([Intel XE#373]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_chamelium_audio@dp-audio.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: [SKIP][332] ([Intel XE#306]) -> [SKIP][333] ([Intel XE#2423] / [i915#2575]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_chamelium_color@ctm-negative.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][334] ([Intel XE#2423] / [i915#2575]) -> [SKIP][335] ([Intel XE#306]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_color@gamma.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][336] ([Intel XE#2423] / [i915#2575]) -> [SKIP][337] ([Intel XE#373]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][338] ([Intel XE#1178]) -> [SKIP][339] ([Intel XE#2341]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][340] ([Intel XE#307]) -> [SKIP][341] ([Intel XE#2423] / [i915#2575]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#308]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][344] ([Intel XE#308]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_edge_walk@128x128-left-edge: - shard-bmg: [DMESG-FAIL][346] ([Intel XE#3468]) -> [DMESG-WARN][347] ([Intel XE#3468]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_cursor_edge_walk@128x128-left-edge.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][348] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][350] ([Intel XE#877]) -> [SKIP][351] ([Intel XE#2291]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][352] ([Intel XE#323]) -> [SKIP][353] ([Intel XE#2423] / [i915#2575]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#323]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][356] ([Intel XE#2423] / [i915#2575]) -> [SKIP][357] ([Intel XE#307]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][358] ([Intel XE#455]) -> [SKIP][359] ([Intel XE#2351]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dsc@dsc-basic.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][360] ([Intel XE#1695]) -> [DMESG-FAIL][361] ([Intel XE#3468]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [DMESG-FAIL][362] ([Intel XE#3468]) -> [FAIL][363] ([Intel XE#1695]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2-set2: [SKIP][364] ([Intel XE#2136]) -> [INCOMPLETE][365] ([Intel XE#1727] / [Intel XE#3468]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][366] ([Intel XE#776]) -> [SKIP][367] ([Intel XE#2136]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][368] ([Intel XE#2423] / [i915#2575]) -> [SKIP][369] ([Intel XE#701]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@chamelium.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][370] ([Intel XE#2423] / [i915#2575]) -> [SKIP][371] ([Intel XE#703]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@display-3x.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][372] ([Intel XE#1135]) -> [SKIP][373] ([Intel XE#2423] / [i915#2575]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_feature_discovery@psr2.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][374] ([Intel XE#2882]) -> [SKIP][375] ([Intel XE#2316]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [FAIL][376] ([Intel XE#301]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [DMESG-WARN][378] ([Intel XE#3468]) -> [FAIL][379] ([Intel XE#2882]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html - shard-dg2-set2: [DMESG-FAIL][380] ([Intel XE#1727]) -> [SKIP][381] ([Intel XE#2423] / [i915#2575]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][382] ([Intel XE#2423] / [i915#2575]) -> [FAIL][383] ([Intel XE#301]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][384] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][385] ([Intel XE#886]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][386] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][387] ([Intel XE#2136]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][388] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][389] ([Intel XE#455]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][390] ([Intel XE#455]) -> [SKIP][391] ([Intel XE#2136]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][392] ([Intel XE#2136]) -> [SKIP][393] ([Intel XE#455]) +4 other tests skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][394] ([i915#5274]) -> [SKIP][395] ([Intel XE#2423] / [i915#2575]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][396] ([Intel XE#2311]) -> [SKIP][397] ([Intel XE#2312]) +18 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#651]) +16 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][400] ([Intel XE#651]) -> [SKIP][401] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][402] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][403] ([Intel XE#651]) +13 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2-set2: [INCOMPLETE][404] ([Intel XE#1195]) -> [SKIP][405] ([Intel XE#2136]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html - shard-bmg: [INCOMPLETE][406] ([Intel XE#3468]) -> [FAIL][407] ([Intel XE#2333]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [FAIL][408] ([Intel XE#2333]) -> [DMESG-FAIL][409] ([Intel XE#3468]) +7 other tests dmesg-fail [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [SKIP][411] ([Intel XE#2312]) +4 other tests skip [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][412] ([Intel XE#1195] / [Intel XE#3468]) -> [ABORT][413] ([Intel XE#3468]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][414] ([Intel XE#3468]) -> [SKIP][415] ([Intel XE#2312]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [DMESG-FAIL][416] ([Intel XE#3468]) -> [FAIL][417] ([Intel XE#2333]) +8 other tests fail [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][418] ([Intel XE#658]) -> [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][420] ([Intel XE#651]) -> [SKIP][421] ([Intel XE#2136]) +17 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][422] ([Intel XE#2313]) -> [SKIP][423] ([Intel XE#2312]) +19 other tests skip [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][425] ([Intel XE#653]) +7 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][426] ([Intel XE#653]) -> [SKIP][427] ([Intel XE#2136]) +19 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][428] ([Intel XE#653]) -> [SKIP][429] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#653]) +15 other tests skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: [SKIP][432] ([Intel XE#3374]) -> [SKIP][433] ([Intel XE#3374] / [Intel XE#3544]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_hdr@brightness-with-hdr.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][434] ([Intel XE#3374]) -> [SKIP][435] ([Intel XE#3374] / [Intel XE#3544]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][436] ([Intel XE#2136]) -> [SKIP][437] ([Intel XE#346]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][438] ([Intel XE#2136]) -> [SKIP][439] ([Intel XE#2925]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][440] ([Intel XE#2136]) -> [SKIP][441] ([Intel XE#2927]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][442] ([Intel XE#2423] / [i915#2575]) -> [SKIP][443] ([Intel XE#2763] / [Intel XE#455]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][444] ([Intel XE#870]) -> [SKIP][445] ([Intel XE#2136]) +2 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#1129]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][448] ([Intel XE#3309]) -> [SKIP][449] ([Intel XE#2136]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [DMESG-WARN][450] ([Intel XE#3468]) -> [DMESG-WARN][451] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][452] ([Intel XE#2864]) -> [INCOMPLETE][453] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html - shard-dg2-set2: [ABORT][454] ([Intel XE#3468]) -> [SKIP][455] ([Intel XE#2446]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][456] ([Intel XE#2136]) -> [SKIP][457] ([Intel XE#1489]) +8 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][458] ([Intel XE#1489]) -> [SKIP][459] ([Intel XE#2136]) +7 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][460] ([Intel XE#2136]) -> [SKIP][461] ([Intel XE#1122]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][462] ([Intel XE#1122]) -> [SKIP][463] ([Intel XE#2136]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-dg2-set2: [SKIP][464] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][465] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-blt.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: [SKIP][466] ([Intel XE#2136]) -> [SKIP][467] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-plane-move.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][468] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][469] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr@fbc-psr-no-drrs.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][470] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][471] ([Intel XE#2136]) +8 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][472] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][473] ([Intel XE#2351]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][474] ([Intel XE#2423] / [i915#2575]) -> [SKIP][475] ([Intel XE#1127]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][476] ([Intel XE#1127]) -> [SKIP][477] ([Intel XE#2423] / [i915#2575]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][478] ([Intel XE#3414]) -> [SKIP][479] ([Intel XE#2423] / [i915#2575]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][480] ([Intel XE#2423] / [i915#2575]) -> [SKIP][481] ([Intel XE#3414]) +2 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-dg2-set2: [SKIP][482] ([Intel XE#2423] / [i915#2575]) -> [SKIP][483] ([Intel XE#455]) +5 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_scaling_modes@scaling-mode-full-aspect.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][484] ([Intel XE#2423] / [i915#2575]) -> [SKIP][485] ([Intel XE#362]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][486] ([Intel XE#2423] / [i915#2575]) -> [SKIP][487] ([Intel XE#330]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][488] ([Intel XE#455]) -> [SKIP][489] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][490] ([Intel XE#2423] / [i915#2575]) -> [SKIP][491] ([Intel XE#2168]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-bmg: [INCOMPLETE][492] -> [SKIP][493] ([Intel XE#1499]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#756]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_writeback@writeback-check-output.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@kms_writeback@writeback-check-output.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: [SKIP][496] ([Intel XE#2423] / [i915#2575]) -> [SKIP][497] ([Intel XE#1091] / [Intel XE#2849]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][498] ([Intel XE#1130]) -> [SKIP][499] ([Intel XE#1123]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][500] ([Intel XE#1126]) -> [SKIP][501] ([Intel XE#1130]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [SKIP][503] ([Intel XE#2905]) +8 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_eudebug@basic-close.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][504] ([Intel XE#2905]) -> [SKIP][505] ([Intel XE#1130]) +13 other tests skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_eudebug_online@resume-dss.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [FAIL][506] ([Intel XE#2364]) -> [DMESG-FAIL][507] ([Intel XE#3468]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_evict@evict-beng-large-multi-vm-cm.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][508] ([Intel XE#1473]) -> [SKIP][509] ([Intel XE#1130]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][510] ([Intel XE#1195]) -> [SKIP][511] ([Intel XE#1130]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_basic@twice-userptr: - shard-dg2-set2: [DMESG-WARN][512] ([Intel XE#1727]) -> [SKIP][513] ([Intel XE#1130]) +2 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_exec_basic@twice-userptr.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][514] ([Intel XE#288]) -> [SKIP][515] ([Intel XE#1130]) +30 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][516] ([Intel XE#1130]) -> [SKIP][517] ([Intel XE#288]) +24 other tests skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [DMESG-WARN][518] ([Intel XE#3343]) -> [SKIP][519] ([Intel XE#1130]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][520] ([Intel XE#3343]) -> [DMESG-WARN][521] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html - shard-dg2-set2: [SKIP][522] ([Intel XE#1130]) -> [DMESG-WARN][523] ([Intel XE#3343]) +1 other test dmesg-warn [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-FAIL][524] ([Intel XE#3467]) -> [DMESG-FAIL][525] ([Intel XE#3468]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][526] ([Intel XE#3499]) -> [DMESG-FAIL][527] ([Intel XE#3467] / [Intel XE#3468]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [FAIL][528] ([Intel XE#3499]) -> [DMESG-FAIL][529] ([Intel XE#3467]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [SKIP][530] ([Intel XE#1130]) -> [DMESG-WARN][531] ([Intel XE#3467]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][532] ([Intel XE#3467]) -> [DMESG-FAIL][533] ([Intel XE#3467] / [Intel XE#3468]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-dg2-set2: [DMESG-WARN][534] ([Intel XE#3467]) -> [SKIP][535] ([Intel XE#1130]) +3 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][536] ([Intel XE#1192]) -> [FAIL][537] ([Intel XE#1999]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][538] ([Intel XE#1130]) -> [SKIP][539] ([Intel XE#560]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_media_fill@media-fill.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [FAIL][540] ([Intel XE#2136]) -> [DMESG-WARN][541] ([Intel XE#3467]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@many-reload.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][542] ([Intel XE#2136]) -> [FAIL][543] ([Intel XE#3546]) +1 other test fail [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_module_load@reload.html - shard-bmg: [DMESG-WARN][544] ([Intel XE#3468]) -> [DMESG-FAIL][545] ([Intel XE#3467]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-8/igt@xe_module_load@reload.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][546] ([Intel XE#2541]) -> [SKIP][547] ([Intel XE#1130]) +7 other tests skip [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: [SKIP][548] ([Intel XE#1130]) -> [SKIP][549] ([Intel XE#2541]) +6 other tests skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#977]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pat@pat-index-xe2.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][552] ([Intel XE#2237] / [Intel XE#2245]) -> [SKIP][553] ([Intel XE#2245]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pat@pat-index-xelp.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-bmg-4/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][554] ([Intel XE#1061]) -> [FAIL][555] ([Intel XE#1173]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_peer2peer@read.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-433/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][556] ([Intel XE#1130]) -> [SKIP][557] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][558] ([Intel XE#2284]) -> [SKIP][559] ([Intel XE#1130]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_pm@d3cold-mocs.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [DMESG-FAIL][560] ([Intel XE#3468]) -> [SKIP][561] ([Intel XE#1130]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][562] ([Intel XE#569]) -> [SKIP][563] ([Intel XE#1130]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-434/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][564] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][565] ([Intel XE#1130]) [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [DMESG-WARN][567] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s3-vm-bind-unbind-all.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: [SKIP][568] ([Intel XE#944]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_query@multigpu-query-config.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-466/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][570] ([Intel XE#1130]) -> [SKIP][571] ([Intel XE#944]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@basic-wedged: - shard-lnl: [DMESG-WARN][572] ([Intel XE#2919] / [Intel XE#3119]) -> [DMESG-WARN][573] ([Intel XE#2919] / [Intel XE#3084] / [Intel XE#3119]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_wedged@basic-wedged.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/shard-lnl-7/igt@xe_wedged@basic-wedged.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#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#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3119]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3119 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#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#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 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12155 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 IGTPW_12155: 12155 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12155/index.html [-- Attachment #2: Type: text/html, Size: 173633 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC @ 2024-11-12 16:34 Jeevan B 2024-11-12 16:34 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B 0 siblings, 1 reply; 9+ messages in thread From: Jeevan B @ 2024-11-12 16:34 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B increase big_joiner limitation to 6k from 5k for display version greater than 30. Apart from lib following tests are modified: tests/intel/kms_pm_lpsp.c tests/kms_flip.c tests/kms_setmode.c v2: added bspec no. and split the patch. Signed-off-by: Jeevan B <jeevan.b@intel.com> Jeevan B (2): lib/igt_kms: Add 6k resolution support for a single CRTC Fix bigjoiner compatibility checks for connector modes lib/igt_kms.c | 22 ++++++++++++++-------- lib/igt_kms.h | 5 +++-- tests/intel/kms_pm_lpsp.c | 4 ++-- tests/kms_display_modes.c | 6 ++++++ tests/kms_flip.c | 4 ++-- tests/kms_setmode.c | 4 ++-- 6 files changed, 29 insertions(+), 16 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes 2024-11-12 16:34 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B @ 2024-11-12 16:34 ` Jeevan B 2024-11-14 20:30 ` Sharma, Swati2 0 siblings, 1 reply; 9+ messages in thread From: Jeevan B @ 2024-11-12 16:34 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B fix bigjoiner compatibility checks by adding drm_fd argument. added unsupported config checks for bigjoiner modes in display tests. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/intel/kms_pm_lpsp.c | 4 ++-- tests/kms_display_modes.c | 6 ++++++ tests/kms_flip.c | 4 ++-- tests/kms_setmode.c | 4 ++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c index 889da42de..74e9d799a 100644 --- a/tests/intel/kms_pm_lpsp.c +++ b/tests/intel/kms_pm_lpsp.c @@ -166,11 +166,11 @@ static bool test_constraint(data_t *data) if (igt_check_force_joiner_status(data->drm_fd, data->output->name)) return false; - if (igt_bigjoiner_possible(mode, max_dotclock)) { + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) { for_each_connector_mode(data->output) { mode = &data->output->config.connector->modes[j__]; - if (igt_bigjoiner_possible(mode, max_dotclock)) + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) continue; igt_output_override_mode(data->output, mode); diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index f1d8ab03d..0950cc483 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -318,6 +318,12 @@ igt_main igt_display_require_output(&data.display); for_each_connected_output(&data.display, output) { + drmModeConnector *connector = output->config.connector; + drmModeModeInfo mode; + int max_dotclock = igt_get_max_dotclock(data.drm_fd); + + igt_require_f(!bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode), + "Big Joiner Connector Found Unsupported Config\n"); data.mst_output[count++] = output; if (output_is_dp_mst(&data, output, dp_mst_outputs)) dp_mst_outputs++; diff --git a/tests/kms_flip.c b/tests/kms_flip.c index cbabbe74f..17da10e2e 100755 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -1756,11 +1756,11 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs, o->kconnector[i - 1]->connector_type_id); if (((igt_check_force_joiner_status(drm_fd, conn_name) || - igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &o->kmode[i], max_dotclock)) && ((crtc_idxs[i] >= (total_crtcs - 1)) || ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) || ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || - igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &o->kmode[i - 1], max_dotclock)) && (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) { igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name); diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index bc7b8fabb..d61cfeb9a 100644 --- a/tests/kms_setmode.c +++ b/tests/kms_setmode.c @@ -736,11 +736,11 @@ static void test_one_combination(const struct test_config *tconf, * - current & previous crtcs are consecutive */ if (((igt_check_force_joiner_status(drm_fd, conn_name) || - igt_bigjoiner_possible(&crtc->mode, max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || - igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) && + igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) { igt_info("Combo: %s is not possible with selected mode(s).\n", test_name); goto out; -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes 2024-11-12 16:34 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B @ 2024-11-14 20:30 ` Sharma, Swati2 0 siblings, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2024-11-14 20:30 UTC (permalink / raw) To: Jeevan B, igt-dev Hi Jeevan, On 12-11-2024 10:04 pm, Jeevan B wrote: > fix bigjoiner compatibility checks by adding drm_fd argument. > added unsupported config checks for bigjoiner modes in display tests. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_pm_lpsp.c | 4 ++-- > tests/kms_display_modes.c | 6 ++++++ > tests/kms_flip.c | 4 ++-- > tests/kms_setmode.c | 4 ++-- > 4 files changed, 12 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c > index 889da42de..74e9d799a 100644 > --- a/tests/intel/kms_pm_lpsp.c > +++ b/tests/intel/kms_pm_lpsp.c > @@ -166,11 +166,11 @@ static bool test_constraint(data_t *data) > if (igt_check_force_joiner_status(data->drm_fd, data->output->name)) > return false; > > - if (igt_bigjoiner_possible(mode, max_dotclock)) { > + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) { > for_each_connector_mode(data->output) { > mode = &data->output->config.connector->modes[j__]; > > - if (igt_bigjoiner_possible(mode, max_dotclock)) > + if (igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock)) > continue; > > igt_output_override_mode(data->output, mode); > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index f1d8ab03d..0950cc483 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -318,6 +318,12 @@ igt_main > igt_display_require_output(&data.display); > > for_each_connected_output(&data.display, output) { > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo mode; > + int max_dotclock = igt_get_max_dotclock(data.drm_fd); > + > + igt_require_f(!bigjoiner_mode_found(data.drm_fd, connector, max_dotclock, &mode), > + "Big Joiner Connector Found Unsupported Config\n"); In this patch, changes related to drm_fd should only come, above change should come as a separate patch. > data.mst_output[count++] = output; > if (output_is_dp_mst(&data, output, dp_mst_outputs)) > dp_mst_outputs++; > diff --git a/tests/kms_flip.c b/tests/kms_flip.c > index cbabbe74f..17da10e2e 100755 > --- a/tests/kms_flip.c > +++ b/tests/kms_flip.c > @@ -1756,11 +1756,11 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs, > o->kconnector[i - 1]->connector_type_id); > > if (((igt_check_force_joiner_status(drm_fd, conn_name) || > - igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &o->kmode[i], max_dotclock)) && > ((crtc_idxs[i] >= (total_crtcs - 1)) || > ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) || > ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || > - igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &o->kmode[i - 1], max_dotclock)) && > (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) { > > igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name); > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > index bc7b8fabb..d61cfeb9a 100644 > --- a/tests/kms_setmode.c > +++ b/tests/kms_setmode.c > @@ -736,11 +736,11 @@ static void test_one_combination(const struct test_config *tconf, > * - current & previous crtcs are consecutive > */ > if (((igt_check_force_joiner_status(drm_fd, conn_name) || > - igt_bigjoiner_possible(&crtc->mode, max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &crtc->mode, max_dotclock)) && > ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) || > ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) || > ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) || > - igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) && > + igt_bigjoiner_possible(drm_fd, &crtc[i - 1].mode, max_dotclock)) && > (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) { > igt_info("Combo: %s is not possible with selected mode(s).\n", test_name); > goto out; ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-21 17:21 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-21 10:45 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B 2024-11-21 10:45 ` [PATCH i-g-t 1/2] " Jeevan B 2024-11-21 17:19 ` Sharma, Swati2 2024-11-21 10:45 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B 2024-11-21 17:21 ` Sharma, Swati2 2024-11-21 12:00 ` ✓ Xe.CI.BAT: success for lib/igt_kms: Add 6k resolution support for a single CRTC (rev3) Patchwork 2024-11-21 14:49 ` ✗ Xe.CI.Full: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-11-12 16:34 [PATCH i-g-t 0/2] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B 2024-11-12 16:34 ` [PATCH i-g-t 2/2] Fix bigjoiner compatibility checks for connector modes Jeevan B 2024-11-14 20:30 ` Sharma, Swati2
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox