* [PATCH i-g-t 0/5] Skip test if joiner display is connected
@ 2024-11-26 16:30 Jeevan B
2024-11-26 16:30 ` [PATCH i-g-t 1/5] lib/igt_kms: Add is_joiner_mode function Jeevan B
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Jeevan B @ 2024-11-26 16:30 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Jeevan B
Skip tests on joiner outputs to prevent failures caused by high-resolution
displays. This ensures the test suite runs smoothly without unnecessary issues.
Add 6k resolution support for a single CRTC and update calls.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (4):
lib/igt_kms: Add is_joiner_mode function
Add 6k resolution support for a single CRTC
tests: Update igt_bigjoiner_possible calls to include drm_fd
tests/kms_display_modes: Skip test if joiner display is connected
Santhosh Reddy Guddati (1):
tests/kms_async_flips: Skip async flips on joiner output
lib/igt_kms.c | 53 +++++++++++++++++++++++++++++++++------
lib/igt_kms.h | 6 +++--
tests/intel/kms_pm_lpsp.c | 4 +--
tests/kms_async_flips.c | 18 +++++++++++--
tests/kms_display_modes.c | 3 +++
tests/kms_flip.c | 4 +--
tests/kms_setmode.c | 4 +--
7 files changed, 74 insertions(+), 18 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/5] lib/igt_kms: Add is_joiner_mode function 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B @ 2024-11-26 16:30 ` Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 2/5] Add 6k resolution support for a single CRTC Jeevan B ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jeevan B @ 2024-11-26 16:30 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B, Santhosh Reddy Guddati Introduce a utility to check if bigjoiner or ultrajoiner mode is required based on requirement. Signed-off-by: Jeevan B <jeevan.b@intel.com> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 32 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 76f32e1e0..6fb5822ee 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6441,6 +6441,37 @@ bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, return found; } +/** + * is_joiner_mode: + * @drm_fd: drm file descriptor + * @output: pointer to the output structure + * + * Checks if the current configuration requires Big Joiner or Ultra Joiner mode + * based on the maximum dot clock and connector settings. + * + * Returns: True if joiner mode is required, otherwise False. + */ +bool is_joiner_mode(int drm_fd, igt_output_t *output) +{ + bool is_joiner = false; + bool is_ultra_joiner = false; + int max_dotclock; + drmModeModeInfo mode; + + max_dotclock = igt_get_max_dotclock(drm_fd); + is_joiner = bigjoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, &mode); + is_ultra_joiner = ultrajoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, &mode); + + if (is_joiner || is_ultra_joiner) + return true; + + return false; +} + /** * igt_has_force_joiner_debugfs * @drmfd: A drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 301f370df..c2fbbb5b0 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1248,6 +1248,7 @@ bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock); bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, int max_dotclock, drmModeModeInfo *mode); bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name); +bool is_joiner_mode(int drm_fd, igt_output_t *output); bool igt_check_force_joiner_status(int drmfd, char *connector_name); bool igt_check_bigjoiner_support(igt_display_t *display); bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/5] Add 6k resolution support for a single CRTC 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 1/5] lib/igt_kms: Add is_joiner_mode function Jeevan B @ 2024-11-26 16:30 ` Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd Jeevan B ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jeevan B @ 2024-11-26 16:30 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. 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 6fb5822ee..f1f198379 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6363,10 +6363,14 @@ 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); } @@ -6605,7 +6609,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), @@ -6632,7 +6637,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 c2fbbb5b0..a5ceaf116 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] 10+ messages in thread
* [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 1/5] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 2/5] Add 6k resolution support for a single CRTC Jeevan B @ 2024-11-26 16:30 ` Jeevan B 2024-11-27 4:29 ` Reddy Guddati, Santhosh 2024-11-26 16:30 ` [PATCH i-g-t 4/5] tests/kms_async_flips: Skip async flips on joiner output Jeevan B ` (4 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2024-11-26 16:30 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B Updated tests to pass drm_fd to igt_bigjoiner_possible. 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] 10+ messages in thread
* Re: [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd 2024-11-26 16:30 ` [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd Jeevan B @ 2024-11-27 4:29 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 10+ messages in thread From: Reddy Guddati, Santhosh @ 2024-11-27 4:29 UTC (permalink / raw) To: igt-dev Hi Jeevan, On 26-11-2024 22:00, Jeevan B wrote: > Updated tests to pass drm_fd to igt_bigjoiner_possible. > > 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)) { Can we use is_joiner_mode here to skip ultra joiner outputs also? > 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] 10+ messages in thread
* [PATCH i-g-t 4/5] tests/kms_async_flips: Skip async flips on joiner output 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B ` (2 preceding siblings ...) 2024-11-26 16:30 ` [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd Jeevan B @ 2024-11-26 16:30 ` Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 5/5] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jeevan B @ 2024-11-26 16:30 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Santhosh Reddy Guddati, Jeevan B, Kunal Joshi From: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Async flips are disallowed with joiner, but the test commit still goes through and causes failures. Update the tests to skip on joiner outputs. V2: Skip tests only on joiner outputs (Kunal). V3: Add a todo to remove workaround when async flips with joiner is supported in kernel. V4: Add proper FIXME, improve log message and move igt_is_joiner mode to library (Swati). Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_async_flips.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 5dec71291..3ce6e18d7 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -653,6 +653,12 @@ static void run_test(data_t *data, void (*test)(data_t *)) data->allow_fail = false; data->modifier = default_modifier(data); igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) { + /* + * FIXME: joiner+async flip is busted currently in KMD. + * Remove this check once the issues are fixed in KMD. + */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), + "Skipping, async flip not supported on joiner mode\n"); test_init_fbs(data); test(data); } @@ -674,8 +680,16 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), data->output->name, igt_fb_modifier_name(data->modifier)) { - test_init_fbs(data); - test(data); + /* + * FIXME: joiner+async flip is busted currently in KMD. + * Remove this check once the issues are fixed in KMD. + */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, + data->output), + "Skipping, async flip not supported " + "on joiner mode\n"); + test_init_fbs(data); + test(data); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 5/5] tests/kms_display_modes: Skip test if joiner display is connected 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B ` (3 preceding siblings ...) 2024-11-26 16:30 ` [PATCH i-g-t 4/5] tests/kms_async_flips: Skip async flips on joiner output Jeevan B @ 2024-11-26 16:30 ` Jeevan B 2024-11-26 17:21 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev3) Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Jeevan B @ 2024-11-26 16:30 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B High-resolution displays that support joiner modes can cause extended mode tests to fail. This commit introduces a check to skip these tests if a joiner mode display is connected, ensuring the test suite runs smoothly without unnecessary failures. v2: Add output name in skip message. Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_display_modes.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index f1d8ab03d..716e07a40 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -318,6 +318,9 @@ igt_main igt_display_require_output(&data.display); for_each_connected_output(&data.display, output) { + igt_skip_on_f(is_joiner_mode(data.drm_fd, output), + "Joiner mode found on output %s, skipping the test\n", + output->name); data.mst_output[count++] = output; if (output_is_dp_mst(&data, output, dp_mst_outputs)) dp_mst_outputs++; -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev3) 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B ` (4 preceding siblings ...) 2024-11-26 16:30 ` [PATCH i-g-t 5/5] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B @ 2024-11-26 17:21 ` Patchwork 2024-11-26 17:34 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-26 18:13 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-26 17:21 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7723 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev3) URL : https://patchwork.freedesktop.org/series/141614/ State : success == Summary == CI Bug Log - changes from XEIGT_8126_BAT -> XEIGTPW_12200_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 9) ------------------------------ Additional (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_12200_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][3] ([i915#6077]) +30 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-basic: - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#784]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#540]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@basic: - bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#1024] / [Intel XE#783]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#829]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#780]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#1024]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html - bat-adlp-7: [PASS][12] -> [SKIP][13] ([Intel XE#455]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-adlp-7/igt@kms_psr@psr-sprite-plane-onoff.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#2849]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_gt_freq@freq_fixed_idle: - bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#1021]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][16] ([Intel XE#255]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][17] ([Intel XE#532]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-pvc-2: NOTRUN -> [SKIP][18] ([Intel XE#2229]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pat@pat-index-xe2: - bat-pvc-2: NOTRUN -> [SKIP][19] ([Intel XE#977]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc@render: - bat-pvc-2: NOTRUN -> [SKIP][20] ([Intel XE#976]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html * igt@xe_pat@pat-index-xelpg: - bat-pvc-2: NOTRUN -> [SKIP][21] ([Intel XE#979]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][22] ([Intel XE#531]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#3342]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/bat-pvc-2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 [Intel XE#976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/976 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_8126 -> IGTPW_12200 * Linux: xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e -> xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 IGTPW_12200: 12200 IGT_8126: 8126 xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e: 7cd4d1589e461d61330ec272c448bc6d1b9da35e xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/index.html [-- Attachment #2: Type: text/html, Size: 9031 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.BAT: failure for Skip test if joiner display is connected (rev3) 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B ` (5 preceding siblings ...) 2024-11-26 17:21 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev3) Patchwork @ 2024-11-26 17:34 ` Patchwork 2024-11-26 18:13 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-26 17:34 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected (rev3) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from IGT_8126 -> IGTPW_12200 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12200 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12200, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12200: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@basic: - bat-dg2-11: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-dg2-11/igt@gem_lmem_swapping@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/bat-dg2-11/igt@gem_lmem_swapping@basic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-rplp-1: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/bat-rplp-1/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset@a-dp1: - fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html Known issues ------------ Here are the changes found in IGTPW_12200 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-modeset: - fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#12914]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][9] -> [SKIP][10] ([i915#9197]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][11] ([i915#12903]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8126/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8126 -> IGTPW_12200 * Linux: CI_DRM_15747 -> CI_DRM_15749 CI-20190529: 20190529 CI_DRM_15747: 7cd4d1589e461d61330ec272c448bc6d1b9da35e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15749: 739a2506c44a0be22cc842d2c625a05ed21c1198 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12200: 12200 IGT_8126: 8126 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12200/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for Skip test if joiner display is connected (rev3) 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B ` (6 preceding siblings ...) 2024-11-26 17:34 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-11-26 18:13 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-26 18:13 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 168397 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev3) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from XEIGT_8126_full -> XEIGTPW_12200_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12200_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12200_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_12200_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-expired-vblank@a-dp2: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_module_load@many-reload.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_module_load@many-reload.html Known issues ------------ Here are the changes found in XEIGTPW_12200_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@all-cards: - shard-dg2-set2: [PASS][5] -> [FAIL][6] ([Intel XE#3440]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@core_getversion@all-cards.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#1885]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@core_hotunplug@hotreplug.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@core_hotunplug@hotunbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@core_hotunplug@unbind-rebind.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][13] -> [FAIL][14] ([Intel XE#3249]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#3453]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@info: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2134]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@fbdev@info.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@fbdev@info.html * igt@fbdev@read: - shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2134]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@fbdev@read.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@fbdev@read.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-3-linear: - shard-bmg: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#877]) +1 other test dmesg-warn [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-3-linear.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-3-linear.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [PASS][23] -> [SKIP][24] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2327]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2136]) +18 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1124]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +15 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#787]) +62 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#3304]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-random-128x128@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][36] ([Intel XE#3468]) +1 other test dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_cursor_crc@cursor-random-128x128@pipe-d-dp-2.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#3468]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1340]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([i915#3804]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#3486]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#3321] / [Intel XE#3487]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@absolute-wf_vblank@a-dp2: - shard-bmg: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#3468]) +4 other tests dmesg-fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_flip@absolute-wf_vblank@a-dp2.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_flip@absolute-wf_vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2635]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][52] ([Intel XE#3321] / [Intel XE#3487]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#301]) +5 other tests fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][55] ([Intel XE#1727] / [Intel XE#3468]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][56] ([Intel XE#3468]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][57] ([Intel XE#3468]) +1 other test dmesg-fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][58] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][59] ([Intel XE#2597] / [Intel XE#2635]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#886]) +2 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2423]) +88 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#651]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2136]) +19 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: [PASS][69] -> [SKIP][70] ([Intel XE#2136]) +33 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [DMESG-FAIL][71] ([Intel XE#3468]) +1 other test dmesg-fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2136]) +11 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2313]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#2333]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2312]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_getfb@getfb-handle-zero: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2423] / [i915#2575]) +23 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_getfb@getfb-handle-zero.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2571]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2763]) +19 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#1430]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#1727] / [Intel XE#3468]) +10 other tests dmesg-warn [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2446]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2446]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_pm_rpm@system-suspend-modeset.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [PASS][88] -> [INCOMPLETE][89] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-68: - shard-bmg: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#1727] / [Intel XE#3468]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms@plane-68.html * igt@kms_properties@get_properties-sanity-atomic: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2423]) +9 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_properties@get_properties-sanity-atomic.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_psr@psr2-no-drrs.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#2423] / [i915#2575]) +106 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3: - shard-bmg: [PASS][97] -> [DMESG-WARN][98] ([Intel XE#3468]) +43 other tests dmesg-warn [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_sequence@queue-idle@pipe-c-hdmi-a-3.html * igt@kms_setmode@basic: - shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#2883]) +4 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2426]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@testdisplay: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#2423]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@testdisplay.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@testdisplay.html * igt@xe_eudebug@basic-connect: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2905]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_eudebug@basic-connect.html * igt@xe_eudebug@basic-exec-queues-enable: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2905]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_eudebug@basic-exec-queues-enable.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][105] -> [TIMEOUT][106] ([Intel XE#1473]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][107] -> [SKIP][108] ([Intel XE#1130]) +205 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2322]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm: - shard-bmg: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#1727]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1130]) +19 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-prefetch.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#3343] / [Intel XE#3468]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#2998]) +1 other test incomplete [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#1192]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-bmg: [PASS][119] -> [FAIL][120] ([Intel XE#1999]) +2 other tests fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@load: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#378]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_module_load@load.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@xe_pm@s2idle-d3hot-basic-exec.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1727] / [Intel XE#3468]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html * igt@xe_query@query-uc-fw-version-huc: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1130]) +34 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_query@query-uc-fw-version-huc.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][127] -> [SKIP][128] ([Intel XE#1130]) +212 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [SKIP][129] ([Intel XE#1885]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [DMESG-WARN][131] ([Intel XE#3468]) -> [PASS][132] +12 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@core_hotunplug@unplug-rescan.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-user: - shard-bmg: [FAIL][133] ([Intel XE#3339]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@core_setmaster@master-drop-set-user.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@eof: - shard-bmg: [SKIP][135] ([Intel XE#2134]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@fbdev@eof.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@fbdev@eof.html * igt@kms_addfb_basic@unused-handle: - shard-bmg: [SKIP][137] ([Intel XE#2423]) -> [PASS][138] +84 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_addfb_basic@unused-handle.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_addfb_basic@unused-handle.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-bmg: [SKIP][139] ([Intel XE#829]) -> [PASS][140] +1 other test pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][141] ([Intel XE#2136]) -> [PASS][142] +18 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [SKIP][143] ([Intel XE#2136]) -> [PASS][144] +15 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [SKIP][145] -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_color@ctm-0-25: - shard-bmg: [DMESG-WARN][147] ([Intel XE#877]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_color@ctm-0-25.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_color@ctm-0-25.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][149] ([Intel XE#2291]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-lnl: [FAIL][151] ([Intel XE#2958]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@kms_fbcon_fbt@fbc-suspend.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][153] ([Intel XE#2316]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][155] ([Intel XE#2882]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [SKIP][157] ([Intel XE#3189]) -> [PASS][158] +5 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [SKIP][159] ([Intel XE#2423] / [i915#2575]) -> [PASS][160] +56 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_flip@busy-flip.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1: - shard-lnl: [FAIL][161] ([Intel XE#886]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][163] ([Intel XE#2597]) -> [PASS][164] +1 other test pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - shard-bmg: [INCOMPLETE][165] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [FAIL][167] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [SKIP][169] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][170] +9 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][171] -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-bmg: [DMESG-FAIL][173] ([Intel XE#3468]) -> [PASS][174] +2 other tests pass [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_plane_alpha_blend@alpha-basic.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [SKIP][175] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [SKIP][177] ([Intel XE#2446]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@basic-rte: - shard-bmg: [SKIP][179] ([Intel XE#2446]) -> [PASS][180] +2 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_rpm@basic-rte.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_pm_rpm@basic-rte.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][181] ([Intel XE#899]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][183] ([Intel XE#2159]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@max-min@pipe-a-edp-1: - shard-lnl: [FAIL][185] ([Intel XE#1522]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html * igt@xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: [FAIL][187] ([Intel XE#3512]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@xe_drm_fdinfo@utilization-others-full-load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-1/igt@xe_drm_fdinfo@utilization-others-full-load.html * igt@xe_evict@evict-beng-small-external-cm: - shard-bmg: [DMESG-WARN][189] ([Intel XE#1727]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_evict@evict-beng-small-external-cm.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_evict@evict-beng-small-external-cm.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [SKIP][191] ([Intel XE#1130]) -> [PASS][192] +186 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [DMESG-WARN][193] ([Intel XE#3467]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_gt_freq@freq_suspend: - shard-bmg: [DMESG-FAIL][195] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_gt_freq@freq_suspend.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-bmg: [SKIP][197] ([Intel XE#2229]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_module_load@reload-no-display: - shard-bmg: [FAIL][199] -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_module_load@reload-no-display.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_module_load@reload-no-display.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [FAIL][201] ([Intel XE#2249]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html * igt@xe_pm@d3hot-multiple-execs: - shard-bmg: [DMESG-WARN][203] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_pm@d3hot-multiple-execs.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_pm@d3hot-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][205] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][207] ([Intel XE#958]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_tlb@basic-tlb: - shard-lnl: [CRASH][209] ([Intel XE#3212]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-6/igt@xe_tlb@basic-tlb.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-3/igt@xe_tlb@basic-tlb.html * igt@xe_vm@large-binds-4194304: - shard-dg2-set2: [DMESG-WARN][211] ([Intel XE#1727]) -> [PASS][212] +1 other test pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_vm@large-binds-4194304.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_vm@large-binds-4194304.html * igt@xe_vm@large-userptr-misaligned-binds-33554432: - shard-bmg: [DMESG-WARN][213] -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_vm@large-userptr-misaligned-binds-33554432.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@xe_vm@large-userptr-misaligned-binds-33554432.html * igt@xe_vm@munmap-style-unbind-userptr-many-all: - shard-dg2-set2: [SKIP][215] ([Intel XE#1130]) -> [PASS][216] +94 other tests pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_vm@munmap-style-unbind-userptr-many-all.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_vm@munmap-style-unbind-userptr-many-all.html #### Warnings #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: [DMESG-WARN][217] ([Intel XE#3468]) -> [SKIP][218] ([Intel XE#1885]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@core_hotunplug@unplug-rescan.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html * igt@fbdev@unaligned-write: - shard-bmg: [SKIP][219] ([Intel XE#2134]) -> [DMESG-WARN][220] ([Intel XE#3468]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@fbdev@unaligned-write.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@fbdev@unaligned-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][221] ([Intel XE#2423] / [i915#2575]) -> [SKIP][222] ([Intel XE#623]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-bmg: [SKIP][223] ([Intel XE#2423]) -> [SKIP][224] ([Intel XE#2233]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: [SKIP][225] ([Intel XE#873]) -> [SKIP][226] ([Intel XE#2423]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_async_flips@invalid-async-flip.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: [SKIP][227] ([Intel XE#2385]) -> [SKIP][228] ([Intel XE#2423]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][229] ([Intel XE#2370]) -> [SKIP][230] ([Intel XE#2423]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][231] ([Intel XE#316]) -> [SKIP][232] ([Intel XE#2136]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][233] ([Intel XE#2136]) -> [SKIP][234] ([Intel XE#316]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-WARN][235] ([Intel XE#3468]) -> [SKIP][236] ([Intel XE#2136]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][237] ([Intel XE#316]) -> [SKIP][238] ([Intel XE#2136] / [Intel XE#2351]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][239] ([Intel XE#2136]) -> [SKIP][240] ([Intel XE#2327]) +6 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-bmg: [SKIP][241] ([Intel XE#2327]) -> [SKIP][242] ([Intel XE#2136]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-270.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-dg2-set2: [INCOMPLETE][243] ([Intel XE#1727] / [Intel XE#3225] / [Intel XE#402]) -> [SKIP][244] ([Intel XE#2136]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][245] ([Intel XE#829]) -> [SKIP][246] ([Intel XE#2136] / [Intel XE#2351]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@x-tiled-addfb-size-overflow.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-overflow.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][247] ([Intel XE#829]) -> [SKIP][248] ([Intel XE#2136]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][249] ([Intel XE#2136]) -> [DMESG-WARN][250] ([Intel XE#3468]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][251] ([Intel XE#2136]) -> [SKIP][252] ([Intel XE#1124]) +13 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][253] ([Intel XE#610]) -> [SKIP][254] ([Intel XE#2136]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-bmg: [SKIP][255] ([Intel XE#2136]) -> [SKIP][256] ([Intel XE#610]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][257] ([Intel XE#1124]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][259] ([Intel XE#1124]) -> [SKIP][260] ([Intel XE#2136]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][262] ([Intel XE#1124]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-bmg: [SKIP][263] ([Intel XE#1124]) -> [SKIP][264] ([Intel XE#2136]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][266] ([Intel XE#619]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][267] ([Intel XE#607]) -> [SKIP][268] ([Intel XE#2136]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [SKIP][270] ([Intel XE#1124]) +7 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][271] ([Intel XE#2423] / [i915#2575]) -> [SKIP][272] ([Intel XE#367]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-bmg: [SKIP][273] ([Intel XE#2423]) -> [SKIP][274] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][275] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][276] ([Intel XE#2423]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][277] ([Intel XE#2423] / [i915#2575]) -> [SKIP][278] ([Intel XE#2191]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][279] ([Intel XE#3189]) -> [SKIP][280] ([Intel XE#2314] / [Intel XE#2894]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: [SKIP][281] ([Intel XE#2191]) -> [SKIP][282] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][283] ([Intel XE#367]) -> [SKIP][284] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][285] ([Intel XE#367]) -> [SKIP][286] ([Intel XE#2423]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][287] ([Intel XE#2423]) -> [SKIP][288] ([Intel XE#367]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][289] -> [SKIP][290] ([Intel XE#2136]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][291] -> [SKIP][292] ([Intel XE#2652] / [Intel XE#787]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][295] ([Intel XE#2907]) -> [SKIP][296] ([Intel XE#2136]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#2907]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][299] ([Intel XE#829]) -> [SKIP][300] ([Intel XE#2136]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html - shard-bmg: [SKIP][301] ([Intel XE#3282]) -> [SKIP][302] ([Intel XE#2136]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][303] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][304] ([Intel XE#2136]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][305] ([Intel XE#3442]) -> [SKIP][306] ([Intel XE#2136]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][307] ([Intel XE#2136]) -> [SKIP][308] ([Intel XE#3432]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][309] ([Intel XE#3432]) -> [SKIP][310] ([Intel XE#2136]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs: - shard-bmg: [SKIP][311] ([Intel XE#2136]) -> [SKIP][312] ([Intel XE#2887]) +15 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][313] ([Intel XE#2887]) -> [SKIP][314] ([Intel XE#2136]) +15 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#2652] / [Intel XE#787]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][317] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][318] ([Intel XE#2136]) +10 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][320] ([Intel XE#455] / [Intel XE#787]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][323] ([Intel XE#2724]) -> [SKIP][324] ([Intel XE#2136]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2-set2: [SKIP][325] ([Intel XE#314]) -> [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: [SKIP][327] ([Intel XE#2423]) -> [SKIP][328] ([Intel XE#2252]) +9 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][329] ([Intel XE#306]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_chamelium_color@ctm-0-25.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: [SKIP][331] ([Intel XE#2325]) -> [SKIP][332] ([Intel XE#2423]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_chamelium_color@ctm-red-to-blue.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][333] ([Intel XE#2423] / [i915#2575]) -> [SKIP][334] ([Intel XE#306]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_chamelium_color@gamma.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][335] ([Intel XE#2252]) -> [SKIP][336] ([Intel XE#2423]) +11 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][337] ([Intel XE#373]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#373]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_chamelium_frames@vga-frame-dump.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][341] ([Intel XE#2341]) -> [SKIP][342] ([Intel XE#2423]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_content_protection@content-type-change.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: [SKIP][343] ([Intel XE#2390]) -> [SKIP][344] ([Intel XE#2423]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#307]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][347] ([Intel XE#307]) -> [SKIP][348] ([Intel XE#2423] / [i915#2575]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: [INCOMPLETE][349] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][350] ([Intel XE#1178]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_content_protection@legacy.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [FAIL][352] ([Intel XE#1178]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_content_protection@lic-type-0.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][353] ([Intel XE#1178]) -> [SKIP][354] ([Intel XE#2423] / [i915#2575]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_content_protection@srm.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [FAIL][355] ([Intel XE#1188]) -> [SKIP][356] ([Intel XE#2423] / [i915#2575]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_content_protection@uevent.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][357] ([Intel XE#308]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x128: - shard-bmg: [SKIP][359] ([Intel XE#3189]) -> [DMESG-FAIL][360] ([Intel XE#3468]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_cursor_crc@cursor-random-128x128.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_cursor_crc@cursor-random-128x128.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][361] ([Intel XE#2423]) -> [SKIP][362] ([Intel XE#2320]) +8 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#455]) +6 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: [SKIP][365] ([Intel XE#2423]) -> [SKIP][366] ([Intel XE#2321]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-bmg: [SKIP][367] ([Intel XE#2321]) -> [SKIP][368] ([Intel XE#2423]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-bmg: [SKIP][369] ([Intel XE#2320]) -> [SKIP][370] ([Intel XE#2423]) +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#308]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-bmg: [SKIP][373] ([Intel XE#2423]) -> [SKIP][374] ([Intel XE#2291]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [SKIP][375] ([Intel XE#2291]) -> [SKIP][376] ([Intel XE#2423]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][377] ([Intel XE#323]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [DMESG-FAIL][379] ([Intel XE#3468]) -> [SKIP][380] ([Intel XE#2423]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][381] ([Intel XE#2286]) -> [SKIP][382] ([Intel XE#2423]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/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-bmg: [SKIP][383] ([Intel XE#2423]) -> [SKIP][384] ([Intel XE#2286]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][385] ([Intel XE#1508]) -> [SKIP][386] ([Intel XE#2136]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#1508]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][389] ([Intel XE#3070]) -> [SKIP][390] ([Intel XE#2136]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: [SKIP][391] ([Intel XE#2244]) -> [SKIP][392] ([Intel XE#2136]) +2 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][393] ([Intel XE#2136]) -> [SKIP][394] ([Intel XE#2244]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][395] ([Intel XE#1695]) -> [SKIP][396] ([Intel XE#2136]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][397] ([Intel XE#2136]) -> [SKIP][398] ([Intel XE#776]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_fbcon_fbt@psr.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][399] ([Intel XE#2372]) -> [SKIP][400] ([Intel XE#2423]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_feature_discovery@chamelium.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-bmg: [SKIP][401] ([Intel XE#2423]) -> [SKIP][402] ([Intel XE#2373]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@display-3x.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: [SKIP][403] ([Intel XE#703]) -> [SKIP][404] ([Intel XE#2423] / [i915#2575]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_feature_discovery@display-3x.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][405] ([Intel XE#2423] / [i915#2575]) -> [SKIP][406] ([Intel XE#1138]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_feature_discovery@display-4x.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_feature_discovery@display-4x.html - shard-bmg: [SKIP][407] ([Intel XE#2423]) -> [SKIP][408] ([Intel XE#1138]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@display-4x.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: [SKIP][409] ([Intel XE#2423]) -> [SKIP][410] ([Intel XE#2374]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_feature_discovery@psr1.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_feature_discovery@psr1.html - shard-dg2-set2: [SKIP][411] ([Intel XE#1135]) -> [SKIP][412] ([Intel XE#2423] / [i915#2575]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_feature_discovery@psr1.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][413] ([Intel XE#3189]) -> [SKIP][414] ([Intel XE#2423]) +5 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][415] ([Intel XE#3189]) -> [FAIL][416] ([Intel XE#2882]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][417] ([Intel XE#2316]) -> [SKIP][418] ([Intel XE#2423]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [DMESG-FAIL][419] ([Intel XE#3468]) -> [SKIP][420] ([Intel XE#2316]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][421] ([Intel XE#2423]) -> [SKIP][422] ([Intel XE#2316]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-bmg: [DMESG-WARN][423] -> [SKIP][424] ([Intel XE#2423]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][425] ([Intel XE#301]) -> [SKIP][426] ([Intel XE#2423] / [i915#2575]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [DMESG-FAIL][427] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][428] ([Intel XE#2423] / [i915#2575]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [SKIP][429] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][430] ([Intel XE#1727] / [Intel XE#3468]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-lnl: [FAIL][431] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][432] ([Intel XE#886]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-bmg: [INCOMPLETE][433] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][434] ([Intel XE#2136]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][435] ([Intel XE#455]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: [SKIP][437] ([Intel XE#3189]) -> [SKIP][438] ([Intel XE#2136]) +5 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#455]) +1 other test skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][441] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][442] ([Intel XE#2136]) +4 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][444] ([Intel XE#455]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html - shard-bmg: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2293] / [Intel XE#2380]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][447] ([Intel XE#455]) -> [SKIP][448] ([Intel XE#2136]) +4 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-dg2-set2: [SKIP][449] ([Intel XE#540]) -> [SKIP][450] ([Intel XE#2423] / [i915#2575]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_force_connector_basic@force-connector-state.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][451] ([i915#5274]) -> [SKIP][452] ([Intel XE#2423] / [i915#2575]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][453] ([Intel XE#2136]) -> [SKIP][454] ([Intel XE#2311]) +27 other tests skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][455] ([Intel XE#2312]) -> [SKIP][456] ([Intel XE#2311]) +1 other test skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][457] ([Intel XE#2311]) -> [SKIP][458] ([Intel XE#2312]) +5 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#2312]) +6 other tests skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#651]) +9 other tests skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/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][463] ([Intel XE#651]) -> [SKIP][464] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][465] ([Intel XE#651]) -> [SKIP][466] ([Intel XE#2136]) +22 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [FAIL][467] ([Intel XE#2333]) -> [SKIP][468] ([Intel XE#2136]) +15 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][469] ([Intel XE#3468]) -> [FAIL][470] ([Intel XE#2333]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [INCOMPLETE][471] ([Intel XE#1727]) -> [FAIL][472] ([Intel XE#2333]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][473] ([Intel XE#3468]) -> [SKIP][474] ([Intel XE#2312]) +1 other test skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][475] ([Intel XE#2136]) -> [FAIL][476] ([Intel XE#2333]) +14 other tests fail [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][477] ([Intel XE#3468]) -> [SKIP][478] ([Intel XE#2136]) +1 other test skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][479] ([Intel XE#2312]) -> [DMESG-FAIL][480] ([Intel XE#3468]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][481] ([Intel XE#3189]) -> [FAIL][482] ([Intel XE#2333]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [FAIL][483] ([Intel XE#2333]) -> [SKIP][484] ([Intel XE#2312]) +1 other test skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][485] ([Intel XE#2333]) -> [DMESG-FAIL][486] ([Intel XE#3468]) +3 other tests dmesg-fail [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][487] ([Intel XE#2136]) -> [DMESG-FAIL][488] ([Intel XE#3468]) +3 other tests dmesg-fail [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][489] ([Intel XE#3189]) -> [SKIP][490] ([Intel XE#2311]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][491] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][492] ([Intel XE#651]) +5 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][493] ([Intel XE#2311]) -> [SKIP][494] ([Intel XE#2136]) +31 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][495] ([Intel XE#658]) -> [SKIP][496] ([Intel XE#2136] / [Intel XE#2351]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][497] ([Intel XE#653]) -> [SKIP][498] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][499] ([Intel XE#2136]) -> [SKIP][500] ([Intel XE#653]) +15 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][501] -> [SKIP][502] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][503] ([Intel XE#2136]) -> [SKIP][504] ([Intel XE#2313]) +29 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][505] ([Intel XE#3189]) -> [SKIP][506] ([Intel XE#2313]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][507] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][508] ([Intel XE#653]) +5 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][509] ([Intel XE#2136]) -> [SKIP][510] ([Intel XE#2350]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][511] ([Intel XE#3189]) -> [SKIP][512] ([Intel XE#2312]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][513] ([Intel XE#2312]) -> [SKIP][514] ([Intel XE#2136]) +7 other tests skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][515] ([Intel XE#2313]) -> [SKIP][516] ([Intel XE#2136]) +32 other tests skip [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][517] ([Intel XE#2313]) -> [SKIP][518] ([Intel XE#2312]) +6 other tests skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: [SKIP][519] ([Intel XE#653]) -> [SKIP][520] ([Intel XE#2136]) +32 other tests skip [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-suspend.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][521] ([Intel XE#2423]) -> [SKIP][522] ([Intel XE#2502]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_getfb@getfb-reject-ccs.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb-repeated-different-handles: - shard-dg2-set2: [SKIP][523] ([Intel XE#687]) -> [SKIP][524] ([Intel XE#2423] / [i915#2575]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_getfb@getfb-repeated-different-handles.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_getfb@getfb-repeated-different-handles.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: [FAIL][525] -> [SKIP][526] ([Intel XE#2423] / [i915#2575]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_hdmi_inject@inject-audio.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][527] ([Intel XE#346]) -> [SKIP][528] ([Intel XE#2136]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][529] ([Intel XE#2136]) -> [SKIP][530] ([Intel XE#346]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][531] ([Intel XE#356]) -> [SKIP][532] ([Intel XE#2423] / [i915#2575]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: [SKIP][533] ([Intel XE#2423]) -> [SKIP][534] ([Intel XE#2486]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_panel_fitting@legacy.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][535] ([Intel XE#616]) -> [SKIP][536] ([Intel XE#2423] / [i915#2575]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_plane_cursor@viewport.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][537] ([Intel XE#2423]) -> [SKIP][538] ([Intel XE#2393]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][539] ([Intel XE#455]) -> [SKIP][540] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][541] ([Intel XE#2493]) -> [SKIP][542] ([Intel XE#2423]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: [SKIP][543] ([Intel XE#3189]) -> [SKIP][544] ([Intel XE#2763]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: [SKIP][545] ([Intel XE#2763]) -> [SKIP][546] ([Intel XE#2423]) +3 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2-set2: [DMESG-WARN][547] ([Intel XE#1727]) -> [SKIP][548] ([Intel XE#2423] / [i915#2575]) +1 other test skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][549] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][550] ([Intel XE#2423] / [i915#2575]) +1 other test skip [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-bmg: [SKIP][551] ([Intel XE#2423]) -> [SKIP][552] ([Intel XE#2763]) +2 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][553] ([Intel XE#870]) -> [INCOMPLETE][554] ([Intel XE#2594]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][555] ([Intel XE#870]) -> [SKIP][556] ([Intel XE#2136]) +1 other test skip [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_pm_backlight@fade.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][557] ([Intel XE#870]) -> [SKIP][558] ([Intel XE#2136]) +1 other test skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][559] ([Intel XE#2136]) -> [SKIP][560] ([Intel XE#870]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html - shard-bmg: [SKIP][561] ([Intel XE#2136]) -> [SKIP][562] ([Intel XE#870]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][563] ([Intel XE#1129]) -> [SKIP][564] ([Intel XE#2136]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html - shard-bmg: [SKIP][565] ([Intel XE#2136]) -> [SKIP][566] ([Intel XE#2392]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][567] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][568] ([Intel XE#908]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-bmg: [DMESG-WARN][569] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][570] ([Intel XE#2136]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_pm_dc@dc9-dpms.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][571] ([Intel XE#908]) -> [SKIP][572] ([Intel XE#2136]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][573] ([Intel XE#2136]) -> [SKIP][574] ([Intel XE#2499]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][575] ([Intel XE#1439]) -> [SKIP][576] ([Intel XE#2446]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: [SKIP][577] ([Intel XE#2446]) -> [SKIP][578] ([Intel XE#1439] / [Intel XE#3141]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][579] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][580] ([Intel XE#2446]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [SKIP][581] -> [SKIP][582] ([Intel XE#2446]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-bmg: [SKIP][583] ([Intel XE#3189]) -> [DMESG-WARN][584] ([Intel XE#1727] / [Intel XE#3468]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_pm_rpm@modeset-non-lpsp.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][585] ([Intel XE#2136]) -> [SKIP][586] ([Intel XE#1489]) +9 other tests skip [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][587] ([Intel XE#3189]) -> [SKIP][588] ([Intel XE#1489]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][589] ([Intel XE#2136]) -> [SKIP][590] ([Intel XE#1489]) +7 other tests skip [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][591] ([Intel XE#1489]) -> [SKIP][592] ([Intel XE#2136]) +6 other tests skip [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][593] ([Intel XE#1489]) -> [SKIP][594] ([Intel XE#2136]) +7 other tests skip [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][595] ([Intel XE#2136]) -> [SKIP][596] ([Intel XE#2387]) [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][597] ([Intel XE#1122]) -> [SKIP][598] ([Intel XE#2136]) +1 other test skip [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: [SKIP][599] ([Intel XE#2387]) -> [SKIP][600] ([Intel XE#2136]) [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr2_su@page_flip-nv12.html [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][601] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][602] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-move.html [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][603] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][604] ([Intel XE#2136]) +12 other tests skip [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: [SKIP][605] ([Intel XE#2136]) -> [SKIP][606] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-bmg: [SKIP][607] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][608] ([Intel XE#2136]) +19 other tests skip [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-render.html [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][609] -> [SKIP][610] ([Intel XE#2136]) +11 other tests skip [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html - shard-bmg: [SKIP][611] ([Intel XE#3189]) -> [SKIP][612] ([Intel XE#2234] / [Intel XE#2850]) [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr@fbc-psr2-primary-render.html [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][613] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][614] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_psr@psr-dpms.html [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-cursor-render: - shard-dg2-set2: [SKIP][615] ([Intel XE#2136]) -> [SKIP][616] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_psr@psr2-cursor-render.html [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][617] ([Intel XE#2234]) -> [SKIP][618] ([Intel XE#2136]) [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_psr@psr2-primary-render.html [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: [SKIP][619] ([Intel XE#2414]) -> [SKIP][620] ([Intel XE#2136]) [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][621] ([Intel XE#2330]) -> [SKIP][622] ([Intel XE#2423]) [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-bmg: [SKIP][623] ([Intel XE#2423]) -> [SKIP][624] ([Intel XE#2330]) [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][625] ([Intel XE#2423]) -> [SKIP][626] ([Intel XE#3414]) [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: [SKIP][627] ([Intel XE#3414]) -> [SKIP][628] ([Intel XE#2423]) +4 other tests skip [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][629] ([Intel XE#2423] / [i915#2575]) -> [SKIP][630] ([Intel XE#3414]) +1 other test skip [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][631] ([Intel XE#3189]) -> [SKIP][632] ([Intel XE#2413]) [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][633] ([Intel XE#1435]) -> [SKIP][634] ([Intel XE#2423]) +1 other test skip [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][635] ([Intel XE#2423]) -> [SKIP][636] ([Intel XE#1435]) [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][637] ([Intel XE#1500]) -> [SKIP][638] ([Intel XE#2423] / [i915#2575]) [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][639] ([Intel XE#2423]) -> [SKIP][640] ([Intel XE#2450]) [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@query-busy-hang: - shard-bmg: [INCOMPLETE][641] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][642] ([Intel XE#2423]) [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@kms_vblank@query-busy-hang.html [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_vblank@query-busy-hang.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2-set2: [INCOMPLETE][643] ([Intel XE#1034]) -> [SKIP][644] ([Intel XE#2423] / [i915#2575]) [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_vblank@ts-continuation-dpms-suspend.html [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@flip-dpms: - shard-bmg: [SKIP][645] ([Intel XE#1499]) -> [SKIP][646] ([Intel XE#2423]) [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@kms_vrr@flip-dpms.html [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][647] -> [SKIP][648] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@kms_vrr@flipline.html [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][649] ([Intel XE#2168]) -> [SKIP][650] ([Intel XE#2423]) +1 other test skip [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@kms_vrr@lobf.html [650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: [SKIP][651] ([Intel XE#2423]) -> [SKIP][652] ([Intel XE#756]) +1 other test skip [651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@kms_writeback@writeback-invalid-parameters.html [652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][653] ([Intel XE#756]) -> [SKIP][654] ([Intel XE#2423] / [i915#2575]) +1 other test skip [653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html [654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: [SKIP][655] ([Intel XE#2423]) -> [SKIP][656] ([Intel XE#1091] / [Intel XE#2849]) [655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html [656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][657] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][658] ([Intel XE#2423]) [657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][659] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][660] ([Intel XE#1130]) +1 other test skip [659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html [660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][661] ([Intel XE#1126]) -> [SKIP][662] ([Intel XE#1130]) [661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfffe.html [662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][663] ([Intel XE#1130]) -> [SKIP][664] ([Intel XE#2504]) [663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_create@multigpu-create-massive-size.html [664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][665] ([Intel XE#2905]) -> [SKIP][666] ([Intel XE#1130]) +12 other tests skip [665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html [666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug@vm-bind-clear: - shard-bmg: [SKIP][667] ([Intel XE#2905]) -> [SKIP][668] ([Intel XE#1130]) +9 other tests skip [667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_eudebug@vm-bind-clear.html [668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html * igt@xe_eudebug_online@debugger-reopen: - shard-dg2-set2: [SKIP][669] ([Intel XE#1130]) -> [SKIP][670] ([Intel XE#2905]) +6 other tests skip [669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_eudebug_online@debugger-reopen.html [670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@single-step: - shard-bmg: [SKIP][671] ([Intel XE#1130]) -> [SKIP][672] ([Intel XE#2905]) +8 other tests skip [671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_eudebug_online@single-step.html [672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@xe_eudebug_online@single-step.html * igt@xe_evict@evict-beng-large-external: - shard-bmg: [DMESG-WARN][673] ([Intel XE#3468]) -> [SKIP][674] ([Intel XE#1130]) +3 other tests skip [673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_evict@evict-beng-large-external.html [674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_evict@evict-beng-large-external.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [SKIP][675] ([Intel XE#1130]) -> [TIMEOUT][676] ([Intel XE#1473] / [Intel XE#402]) [675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html [676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: [SKIP][677] ([Intel XE#2322]) -> [SKIP][678] ([Intel XE#1130]) +14 other tests skip [677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html [678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: [SKIP][679] ([Intel XE#1130]) -> [SKIP][680] ([Intel XE#2322]) +6 other tests skip [679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html [680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][681] ([Intel XE#1130]) -> [SKIP][682] ([Intel XE#288]) +16 other tests skip [681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_exec_fault_mode@once-basic.html [682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][683] ([Intel XE#288]) -> [SKIP][684] ([Intel XE#1130]) +39 other tests skip [683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_reset@virtual-close-fd-no-exec: - shard-dg2-set2: [SKIP][685] ([Intel XE#1130]) -> [DMESG-WARN][686] ([Intel XE#1727]) [685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_exec_reset@virtual-close-fd-no-exec.html [686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_exec_reset@virtual-close-fd-no-exec.html * igt@xe_exec_threads@threads-hang-userptr-rebind-err: - shard-bmg: [SKIP][687] ([Intel XE#1130]) -> [DMESG-WARN][688] ([Intel XE#3468]) +1 other test dmesg-warn [687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html [688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind-err.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [SKIP][689] ([Intel XE#1130]) -> [DMESG-WARN][690] ([Intel XE#3467] / [Intel XE#3468]) +2 other tests dmesg-warn [689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [DMESG-WARN][691] ([Intel XE#3467]) -> [SKIP][692] ([Intel XE#1130]) +3 other tests skip [691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/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: [DMESG-FAIL][693] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][694] ([Intel XE#3499]) [693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-bmg: [FAIL][695] ([Intel XE#3499]) -> [SKIP][696] ([Intel XE#1130]) +2 other tests skip [695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][697] ([Intel XE#1130]) -> [DMESG-WARN][698] ([Intel XE#3467]) +2 other tests dmesg-warn [697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][699] ([Intel XE#3467] / [Intel XE#3468]) -> [SKIP][700] ([Intel XE#1130]) [699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][701] ([Intel XE#1130]) -> [SKIP][702] ([Intel XE#560]) [701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_media_fill@media-fill.html [702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_media_fill@media-fill.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [DMESG-FAIL][703] ([Intel XE#3467]) -> [FAIL][704] ([Intel XE#3546]) [703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_module_load@reload-no-display.html [704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_module_load@reload-no-display.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][705] ([Intel XE#3573]) -> [SKIP][706] ([Intel XE#1130]) +8 other tests skip [705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_oa@invalid-create-userspace-config.html [706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][707] ([Intel XE#2248]) -> [SKIP][708] ([Intel XE#1130]) [707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html [708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@oa-unit-concurrent-oa-buffer-read: - shard-dg2-set2: [SKIP][709] ([Intel XE#1130]) -> [SKIP][710] ([Intel XE#3573]) +4 other tests skip [709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_oa@oa-unit-concurrent-oa-buffer-read.html [710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_oa@oa-unit-concurrent-oa-buffer-read.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: [SKIP][711] ([Intel XE#1130]) -> [SKIP][712] ([Intel XE#2248]) [711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html [712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][713] ([Intel XE#1337]) -> [SKIP][714] ([Intel XE#1130]) [713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html [714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][715] ([Intel XE#979]) -> [SKIP][716] ([Intel XE#1130]) [715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html [716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read: - shard-dg2-set2: [FAIL][717] ([Intel XE#1173]) -> [SKIP][718] ([Intel XE#1061]) [717]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_peer2peer@read.html [718]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-basic: - shard-bmg: [SKIP][719] ([Intel XE#2284]) -> [SKIP][720] ([Intel XE#1130]) +2 other tests skip [719]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-7/igt@xe_pm@d3cold-basic.html [720]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][721] ([Intel XE#2284]) -> [SKIP][722] ([Intel XE#1130]) [721]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_pm@d3cold-mocs.html [722]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: [SKIP][723] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][724] ([Intel XE#1130]) +1 other test skip [723]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_pm@s2idle-d3cold-basic-exec.html [724]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][725] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [SKIP][726] ([Intel XE#1130]) [725]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html [726]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [SKIP][727] ([Intel XE#1130]) -> [DMESG-WARN][728] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [727]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [728]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [DMESG-WARN][729] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][730] ([Intel XE#1130]) [729]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-436/igt@xe_pm@s4-basic.html [730]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [SKIP][731] ([Intel XE#1130]) -> [DMESG-WARN][732] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [731]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-434/igt@xe_pm@s4-mocs.html [732]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_pm@s4-mocs.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][733] ([Intel XE#1130]) -> [SKIP][734] ([Intel XE#579]) [733]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html [734]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: [SKIP][735] ([Intel XE#944]) -> [SKIP][736] ([Intel XE#1130]) +2 other tests skip [735]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-463/igt@xe_query@multigpu-query-config.html [736]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-434/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: [SKIP][737] ([Intel XE#944]) -> [SKIP][738] ([Intel XE#1130]) +1 other test skip [737]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-6/igt@xe_query@multigpu-query-cs-cycles.html [738]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: [SKIP][739] ([Intel XE#1130]) -> [SKIP][740] ([Intel XE#944]) +3 other tests skip [739]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html [740]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-7/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: [SKIP][741] ([Intel XE#1130]) -> [SKIP][742] ([Intel XE#944]) +1 other test skip [741]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [742]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [SKIP][743] ([Intel XE#1130]) -> [SKIP][744] ([Intel XE#3342]) [743]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html [744]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_tlb@basic-tlb: - shard-bmg: [CRASH][745] ([Intel XE#3212]) -> [SKIP][746] ([Intel XE#1130]) [745]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-2/igt@xe_tlb@basic-tlb.html [746]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-bmg: [DMESG-WARN][747] ([Intel XE#2919]) -> [SKIP][748] ([Intel XE#1130]) [747]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-5/igt@xe_wedged@basic-wedged.html [748]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-1/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][749] -> [ABORT][750] ([Intel XE#3421]) [749]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html [750]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [SKIP][751] ([Intel XE#1130]) -> [ABORT][752] ([Intel XE#3075] / [Intel XE#3084]) [751]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8126/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html [752]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034 [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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [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#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#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958 [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#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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [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#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#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189 [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3282 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [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#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3512 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8126 -> IGTPW_12200 * Linux: xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e -> xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198 IGTPW_12200: 12200 IGT_8126: 8126 xe-2279-7cd4d1589e461d61330ec272c448bc6d1b9da35e: 7cd4d1589e461d61330ec272c448bc6d1b9da35e xe-2281-739a2506c44a0be22cc842d2c625a05ed21c1198: 739a2506c44a0be22cc842d2c625a05ed21c1198 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12200/index.html [-- Attachment #2: Type: text/html, Size: 219151 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-11-27 4:29 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-26 16:30 [PATCH i-g-t 0/5] Skip test if joiner display is connected Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 1/5] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 2/5] Add 6k resolution support for a single CRTC Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 3/5] tests: Update igt_bigjoiner_possible calls to include drm_fd Jeevan B 2024-11-27 4:29 ` Reddy Guddati, Santhosh 2024-11-26 16:30 ` [PATCH i-g-t 4/5] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 2024-11-26 16:30 ` [PATCH i-g-t 5/5] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B 2024-11-26 17:21 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev3) Patchwork 2024-11-26 17:34 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-26 18:13 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox