* [PATCH i-g-t 0/4] Skip test if joiner display is connected
@ 2024-12-04 6:09 Jeevan B
2024-12-04 6:09 ` [PATCH i-g-t 1/4] lib/igt_kms: Add is_joiner_mode function Jeevan B
` (8 more replies)
0 siblings, 9 replies; 13+ messages in thread
From: Jeevan B @ 2024-12-04 6:09 UTC (permalink / raw)
To: igt-dev; +Cc: kunal1.joshi, 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 (3):
lib/igt_kms: Add is_joiner_mode function
tests/kms_display_modes: Skip test if joiner display is connected
lib/igt_kms: Add 6k resolution support for a single CRTC
Santhosh Reddy Guddati (1):
tests/kms_async_flips: Skip async flips on joiner output
lib/igt_kms.c | 55 +++++++++++++++++++++++++++++++++------
lib/igt_kms.h | 6 +++--
tests/intel/kms_pm_lpsp.c | 4 +--
tests/kms_async_flips.c | 18 +++++++++++--
tests/kms_display_modes.c | 10 +++++++
tests/kms_flip.c | 4 +--
tests/kms_setmode.c | 4 +--
7 files changed, 83 insertions(+), 18 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t 1/4] lib/igt_kms: Add is_joiner_mode function 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B @ 2024-12-04 6:09 ` Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B ` (7 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-12-04 6:09 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, Jeevan B, Santhosh Reddy Guddati, Swati Sharma 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] 13+ messages in thread
* [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 1/4] lib/igt_kms: Add is_joiner_mode function Jeevan B @ 2024-12-04 6:09 ` Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 3/4] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B ` (6 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-12-04 6:09 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, Santhosh Reddy Guddati, Jeevan B, Swati Sharma 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] 13+ messages in thread
* [PATCH i-g-t 3/4] tests/kms_display_modes: Skip test if joiner display is connected 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 1/4] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B @ 2024-12-04 6:09 ` Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 4/4] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B ` (5 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-12-04 6:09 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, Jeevan B, Swati Sharma 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. v3: Update logic. Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_display_modes.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index f1d8ab03d..e41c60cc0 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -232,6 +232,12 @@ static void run_extendedmode_test(data_t *data) { for_each_pipe(display, pipe1) { for_each_valid_output_on_pipe(display, pipe1, output1) { + + if (is_joiner_mode(data->drm_fd, output1)) { + igt_info("Skipping joiner output %s", output1->name); + continue; + } + for_each_pipe(display, pipe2) { if (pipe1 == pipe2) continue; @@ -318,6 +324,10 @@ igt_main igt_display_require_output(&data.display); for_each_connected_output(&data.display, output) { + if (is_joiner_mode(data.drm_fd, output)) { + igt_info("Skipping joiner output %s", output->name); + continue; + } 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] 13+ messages in thread
* [PATCH i-g-t 4/4] lib/igt_kms: Add 6k resolution support for a single CRTC 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (2 preceding siblings ...) 2024-12-04 6:09 ` [PATCH i-g-t 3/4] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B @ 2024-12-04 6:09 ` Jeevan B 2024-12-04 7:40 ` ✓ i915.CI.BAT: success for Skip test if joiner display is connected (rev6) Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-12-04 6:09 UTC (permalink / raw) To: igt-dev; +Cc: kunal1.joshi, Jeevan B, Ankit Nautiyal increase big_joiner limitation to 6k from 5k for display version greater than 30. v2: Update fd to drm_fd and few minor styling fixes. Bspec: 68858 Apart from lib following tests are modified: tests/intel/kms_pm_lpsp.c tests/kms_flip.c tests/kms_setmode.c Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- lib/igt_kms.c | 24 ++++++++++++++++-------- lib/igt_kms.h | 5 +++-- tests/intel/kms_pm_lpsp.c | 4 ++-- tests/kms_flip.c | 4 ++-- tests/kms_setmode.c | 4 ++-- 5 files changed, 25 insertions(+), 16 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 6fb5822ee..11245dd12 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6355,6 +6355,7 @@ int igt_get_max_dotclock(int fd) /** * igt_bigjoiner_possible: + * @drm_fd: drm file descriptor * @mode: libdrm mode * @max_dotclock: Max pixel clock frequency * @@ -6363,10 +6364,15 @@ 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 drm_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(drm_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 +6393,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 +6415,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 +6611,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 +6639,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..8810123fb 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 drm_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); 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] 13+ messages in thread
* ✓ i915.CI.BAT: success for Skip test if joiner display is connected (rev6) 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (3 preceding siblings ...) 2024-12-04 6:09 ` [PATCH i-g-t 4/4] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B @ 2024-12-04 7:40 ` Patchwork 2024-12-04 9:13 ` ✗ Xe.CI.BAT: failure " Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-04 7:40 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected (rev6) URL : https://patchwork.freedesktop.org/series/141614/ State : success == Summary == CI Bug Log - changes from IGT_8136 -> IGTPW_12240 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_12240 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12240, 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_12240/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12240: ### IGT changes ### #### Warnings #### * igt@i915_module_load@load: - fi-pnv-d510: [ABORT][1] ([i915#13203]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8136/fi-pnv-d510/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/fi-pnv-d510/igt@i915_module_load@load.html Known issues ------------ Here are the changes found in IGTPW_12240 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arls-5: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-arls-5: NOTRUN -> [SKIP][4] ([i915#11191] / [i915#11345]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@fbdev@eof.html * igt@fbdev@info: - bat-arls-5: NOTRUN -> [SKIP][5] ([i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@fbdev@info.html * igt@gem_lmem_swapping@basic: - bat-arls-5: NOTRUN -> [SKIP][6] ([i915#10213] / [i915#11671]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-arls-5: NOTRUN -> [SKIP][7] ([i915#11343] / [i915#4083]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-5: NOTRUN -> [SKIP][8] ([i915#10197] / [i915#10211] / [i915#4079]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-5: NOTRUN -> [SKIP][9] ([i915#12637] / [i915#4077]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-5: NOTRUN -> [SKIP][10] ([i915#10206] / [i915#4079]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [PASS][11] -> [FAIL][12] ([i915#12903]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8136/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-arls-5: NOTRUN -> [SKIP][13] ([i915#10209] / [i915#11681]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arls-5: NOTRUN -> [SKIP][14] ([i915#10200] / [i915#12203]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - bat-arls-5: NOTRUN -> [SKIP][15] ([i915#10200]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_dsc@dsc-basic: - bat-arls-5: NOTRUN -> [SKIP][16] ([i915#12732]) +16 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-arls-5: NOTRUN -> [SKIP][17] ([i915#3637]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-5: NOTRUN -> [SKIP][18] ([i915#10207]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-arls-5: NOTRUN -> [SKIP][19] ([i915#4342] / [i915#5354]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][20] -> [SKIP][21] ([i915#9197]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8136/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-5: NOTRUN -> [SKIP][22] ([i915#9812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-arls-5: NOTRUN -> [SKIP][23] ([i915#9732]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arls-5: NOTRUN -> [SKIP][24] ([i915#10208] / [i915#8809]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-arls-5: NOTRUN -> [SKIP][25] ([i915#12732] / [i915#3708]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-arls-5: NOTRUN -> [SKIP][26] ([i915#10212] / [i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-5: NOTRUN -> [SKIP][27] ([i915#12637] / [i915#3708] / [i915#4077]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-arls-5: NOTRUN -> [SKIP][28] ([i915#10214] / [i915#3708]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-5: NOTRUN -> [SKIP][29] ([i915#10216] / [i915#3708]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-arls-5/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][30] ([i915#12061]) -> [PASS][31] +1 other test pass [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8136/bat-mtlp-8/igt@i915_selftest@live.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/bat-mtlp-8/igt@i915_selftest@live.html [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11191 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637 [i915#12732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12732 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8136 -> IGTPW_12240 * Linux: CI_DRM_15778 -> CI_DRM_15783 CI-20190529: 20190529 CI_DRM_15778: 5779fb3c12faf12589054127d60b1d36d56ba219 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15783: 40be916657d26be563dbbd2b618cc398ea9aeb33 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/index.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Skip test if joiner display is connected (rev6) 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (4 preceding siblings ...) 2024-12-04 7:40 ` ✓ i915.CI.BAT: success for Skip test if joiner display is connected (rev6) Patchwork @ 2024-12-04 9:13 ` Patchwork 2024-12-04 9:14 ` B, Jeevan 2024-12-04 9:17 ` ✗ i915.CI.Full: " Patchwork ` (2 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-12-04 9:13 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9874 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev6) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from XEIGT_8136_BAT -> XEIGTPW_12240_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12240_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12240_BAT, 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 (7 -> 7) ------------------------------ Additional (1): bat-bmg-1 Missing (1): bat-adlp-7 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12240_BAT: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - bat-bmg-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html Known issues ------------ Here are the changes found in XEIGTPW_12240_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-lnl-2: NOTRUN -> [SKIP][3] ([Intel XE#2134]) +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@fbdev@eof.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-1: NOTRUN -> [SKIP][4] ([Intel XE#2233]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-lnl-2: NOTRUN -> [SKIP][5] ([Intel XE#1466] / [Intel XE#2235]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-lnl-2: NOTRUN -> [SKIP][6] ([Intel XE#2235]) +13 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-basic: - bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#2244]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-edid: - bat-lnl-2: NOTRUN -> [SKIP][9] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@basic: - bat-lnl-2: NOTRUN -> [SKIP][10] ([Intel XE#2235] / [Intel XE#2548]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - bat-lnl-2: NOTRUN -> [SKIP][11] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-bmg-1: NOTRUN -> [DMESG-WARN][12] ([Intel XE#877]) +1 other test dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_psr@psr-cursor-plane-move: - bat-lnl-2: NOTRUN -> [SKIP][13] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-1: NOTRUN -> [SKIP][14] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-bmg-1: NOTRUN -> [SKIP][15] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html - bat-lnl-2: NOTRUN -> [SKIP][16] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-small-cm: - bat-lnl-2: NOTRUN -> [SKIP][17] ([Intel XE#688]) +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_evict@evict-small-cm.html * igt@xe_live_ktest@xe_migrate: - bat-bmg-1: NOTRUN -> [SKIP][18] ([Intel XE#1192]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html - bat-lnl-2: NOTRUN -> [SKIP][19] ([Intel XE#1192]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html * igt@xe_mmap@vram: - bat-lnl-2: NOTRUN -> [SKIP][20] ([Intel XE#1416]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-1: NOTRUN -> [SKIP][21] ([Intel XE#1420]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html - bat-lnl-2: NOTRUN -> [SKIP][22] ([Intel XE#1420] / [Intel XE#2838]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-1: NOTRUN -> [SKIP][23] ([Intel XE#2245]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xelp.html - bat-lnl-2: NOTRUN -> [SKIP][24] ([Intel XE#977]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-1: NOTRUN -> [SKIP][25] ([Intel XE#2236]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html - bat-lnl-2: NOTRUN -> [SKIP][26] ([Intel XE#2236] / [Intel XE#979]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-bmg-1: NOTRUN -> [SKIP][27] ([Intel XE#3342]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html - bat-lnl-2: NOTRUN -> [SKIP][28] ([Intel XE#3342]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [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#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8136 -> IGTPW_12240 * Linux: xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219 -> xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33 IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219: 5779fb3c12faf12589054127d60b1d36d56ba219 xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33: 40be916657d26be563dbbd2b618cc398ea9aeb33 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/index.html [-- Attachment #2: Type: text/html, Size: 11733 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: ✗ Xe.CI.BAT: failure for Skip test if joiner display is connected (rev6) 2024-12-04 9:13 ` ✗ Xe.CI.BAT: failure " Patchwork @ 2024-12-04 9:14 ` B, Jeevan 0 siblings, 0 replies; 13+ messages in thread From: B, Jeevan @ 2024-12-04 9:14 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 9761 bytes --] Failure not related to patch. Please re-report. From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Wednesday, December 4, 2024 2:44 PM To: B, Jeevan <jeevan.b@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.BAT: failure for Skip test if joiner display is connected (rev6) Patch Details Series: Skip test if joiner display is connected (rev6) URL: https://patchwork.freedesktop.org/series/141614/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/index.html CI Bug Log - changes from XEIGT_8136_BAT -> XEIGTPW_12240_BAT Summary FAILURE Serious unknown changes coming with XEIGTPW_12240_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12240_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (7 -> 7) Additional (1): bat-bmg-1 Missing (1): bat-adlp-7 Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12240_BAT: IGT changes Possible regressions * igt@core_hotunplug@unbind-rebind: * bat-bmg-2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html> Known issues Here are the changes found in XEIGTPW_12240_BAT that come from known issues: IGT changes Issues hit * igt@fbdev@eof: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@fbdev@eof.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) +4 other tests skip * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2233<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233>) * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#1466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466> / Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235>) * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> (Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235>) +13 other tests skip * igt@kms_dsc@dsc-basic: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_dsc@dsc-basic.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) * igt@kms_flip@basic-flip-vs-dpms: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html> (Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235> / Intel XE#2482<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482>) +3 other tests skip * igt@kms_force_connector_basic@force-edid: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_force_connector_basic@force-edid.html> (Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235> / Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>) +2 other tests skip * igt@kms_frontbuffer_tracking@basic: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html> (Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235> / Intel XE#2548<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548>) * igt@kms_hdmi_inject@inject-audio: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html> (Intel XE#1470<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470> / Intel XE#2235<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235> / Intel XE#2853<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853>) * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: * bat-bmg-1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test dmesg-warn * igt@kms_psr@psr-cursor-plane-move: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +2 other tests skip * igt@kms_psr@psr-sprite-plane-onoff: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +2 other tests skip * igt@sriov_basic@enable-vfs-autoprobe-off: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) +1 other test skip * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) +1 other test skip * igt@xe_evict@evict-small-cm: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_evict@evict-small-cm.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +17 other tests skip * igt@xe_live_ktest@xe_migrate: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) +2 other tests skip * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) +2 other tests skip * igt@xe_mmap@vram: * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_mmap@vram.html> (Intel XE#1416<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416>) * igt@xe_pat@pat-index-xehpc: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420>) * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420> / Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>) * igt@xe_pat@pat-index-xelp: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xelp.html> (Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>) * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>) * igt@xe_pat@pat-index-xelpg: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html> (Intel XE#2236<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>) * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html> (Intel XE#2236<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236> / Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) * igt@xe_sriov_flr@flr-vf1-clear: * bat-bmg-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) * bat-lnl-2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) Build changes * IGT: IGT_8136 -> IGTPW_12240 * Linux: xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219 -> xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33 IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219: 5779fb3c12faf12589054127d60b1d36d56ba219 xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33: 40be916657d26be563dbbd2b618cc398ea9aeb33 [-- Attachment #2: Type: text/html, Size: 28449 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Skip test if joiner display is connected (rev6) 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (5 preceding siblings ...) 2024-12-04 9:13 ` ✗ Xe.CI.BAT: failure " Patchwork @ 2024-12-04 9:17 ` Patchwork 2024-12-04 10:08 ` ✗ Xe.CI.Full: " Patchwork 2024-12-09 14:36 ` ✓ i915.CI.Full: success " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-04 9:17 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected (rev6) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15783_full -> IGTPW_12240_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12240_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12240_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12240_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_balancer@bonded-pair: - shard-glk: NOTRUN -> [ABORT][2] +1 other test abort [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk5/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [ABORT][3] +2 other tests abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@fairslice: - shard-dg1: NOTRUN -> [ABORT][4] +3 other tests abort [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_exec_balancer@fairslice.html * igt@kms_async_flips@crc: - shard-dg1: NOTRUN -> [WARN][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_async_flips@crc.html - shard-dg2: NOTRUN -> [WARN][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][7] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html - shard-snb: NOTRUN -> [INCOMPLETE][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [INCOMPLETE][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [CRASH][11] +3 other tests crash [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][12] +3 other tests crash [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: NOTRUN -> [ABORT][13] +11 other tests abort [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-tglu: NOTRUN -> [ABORT][14] +7 other tests abort [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: NOTRUN -> [ABORT][15] +1 other test abort [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [ABORT][16] +2 other tests abort [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@perf@mi-rpc.html Known issues ------------ Here are the changes found in IGTPW_12240_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +17 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8414]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@drm_fdinfo@busy-idle@vcs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#3281]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#3281]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#6335]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][32] ([i915#1099]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-snb: NOTRUN -> [ABORT][35] ([i915#11690]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-tglu: NOTRUN -> [ABORT][37] ([i915#13218]) +11 other tests abort [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@gem_exec_balancer@bonded-dual.html - shard-glk: NOTRUN -> [ABORT][38] ([i915#13218]) +15 other tests abort [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [ABORT][39] ([i915#13218]) +21 other tests abort [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4525]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#6344]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html - shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#6344]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#7276]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk1/igt@gem_lmem_swapping@random.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_lmem_swapping@random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#284]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#284]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-1/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12917] / [i915#12964]) +1 other test timeout [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][74] +161 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-prime-sanity-check@all: - shard-rkl: NOTRUN -> [DMESG-WARN][79] ([i915#12964]) +3 other tests dmesg-warn [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@gem_softpin@evict-prime-sanity-check@all.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4881]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4881]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html - shard-rkl: NOTRUN -> [SKIP][94] ([i915#8399]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rps@fence-order: - shard-dg1: NOTRUN -> [ABORT][95] ([i915#13218]) +19 other tests abort [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@i915_pm_rps@fence-order.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#11681]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][98] ([i915#7443]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#4817]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4212]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [INCOMPLETE][102] ([i915#9878]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_async_flips@crc.html - shard-tglu-1: NOTRUN -> [INCOMPLETE][103] ([i915#9878]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_async_flips@crc.html - shard-snb: NOTRUN -> [INCOMPLETE][104] ([i915#9878]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_async_flips@crc.html - shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#9878]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_async_flips@crc.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#5286]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6095]) +9 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-edp-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#10434] / [i915#6095]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#12313]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12313]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][119] ([i915#12313]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#12313]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +37 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#12805]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#12805]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#12805]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#12805]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +24 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +9 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html - shard-glk: NOTRUN -> [INCOMPLETE][129] ([i915#12796]) +1 other test incomplete [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#6095]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +33 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][133] +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#7828]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7828]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-snb: NOTRUN -> [INCOMPLETE][139] ([i915#8816]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_content_protection@atomic.html - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [PASS][142] -> [DMESG-WARN][143] ([i915#12964]) +1 other test dmesg-warn [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8814]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3555]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#5354]) +35 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][148] +14 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][149] -> [FAIL][150] ([i915#2346]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#8588]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#8588]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#8588]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#8588]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8588]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#12402]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#12402]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][158] ([i915#12402]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#8812]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8812]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3637]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3637]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][163] ([i915#11989]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9934]) +6 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9934]) +7 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3637]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#4839]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][169] ([i915#12745]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672] / [i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672] / [i915#3555]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555] / [i915#5190]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1825]) +34 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][181] +15 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#1825]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#8708]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#8708]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][185] +37 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][186] +49 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10055]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3458]) +11 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3023]) +18 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][191] +438 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3458]) +12 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#10656]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#6301]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6301]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#6301]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#6301]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][201] ([i915#12178]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][202] ([i915#7862]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][203] ([i915#12169]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][204] ([i915#10647]) +1 other test fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9685]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9685]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9685]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#9685]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3361]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#9519]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9519]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#6524]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#6524]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#6524]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6524] / [i915#6805]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#11520]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#11520]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][219] ([i915#11520]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#12316]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#11520]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#11520]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#11520]) +8 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][224] ([i915#11520]) +11 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#9732]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#1072] / [i915#9732]) +19 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1072] / [i915#9732]) +17 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr-basic: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#9732]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#1072] / [i915#9732]) +17 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5289]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#5289]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#5289]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#12755] / [i915#5190]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#5289]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html - shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#12722] / [i915#5465]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-tglu: [PASS][239] -> [FAIL][240] ([i915#12722]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-tglu: [PASS][241] -> [FAIL][242] ([i915#5465]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: [PASS][243] -> [FAIL][244] ([i915#5465]) +2 other tests fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg2-3/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][245] ([i915#12276]) +1 other test incomplete [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#11920]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#11920]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#11920]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#11920]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][250] ([i915#2437]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2437] / [i915#9412]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][252] ([i915#2437] / [i915#9412]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#2437] / [i915#9412]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2437] / [i915#9412]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen12-group-exclusive-stream-sample-oa: - shard-mtlp: NOTRUN -> [ABORT][255] ([i915#13218]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@perf@gen12-group-exclusive-stream-sample-oa.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [ABORT][256] ([i915#13218]) +21 other tests abort [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-hang: - shard-snb: NOTRUN -> [ABORT][257] ([i915#13218]) +10 other tests abort [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@perf_pmu@busy-hang.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8850]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][259] ([i915#8850]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][260] ([i915#8850]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#8850]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][262] ([i915#8850]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@init-wait@rcs0: - shard-tglu-1: NOTRUN -> [ABORT][263] ([i915#13218]) +4 other tests abort [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@perf_pmu@init-wait@rcs0.html * igt@prime_busy@hang: - shard-rkl: NOTRUN -> [DMESG-WARN][264] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@prime_busy@hang.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3708] / [i915#4077]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3708]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#3708]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#3708]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9917]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#9917]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#9917]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][273] ([i915#12910]) +9 other tests fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][274] ([i915#12392]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][276] -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-snb: [SKIP][278] -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_setmode@basic: - shard-dg1: [FAIL][280] ([i915#5465]) -> [PASS][281] +2 other tests pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg1-17/igt@kms_setmode@basic.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_setmode@basic.html * igt@perf_pmu@multi-client@vcs0: - shard-rkl: [DMESG-WARN][282] ([i915#12964]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-7/igt@perf_pmu@multi-client@vcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@perf_pmu@multi-client@vcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11690]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11690 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12722 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8136 -> IGTPW_12240 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15783: 40be916657d26be563dbbd2b618cc398ea9aeb33 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/index.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for Skip test if joiner display is connected (rev6) 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (6 preceding siblings ...) 2024-12-04 9:17 ` ✗ i915.CI.Full: " Patchwork @ 2024-12-04 10:08 ` Patchwork 2024-12-09 14:36 ` ✓ i915.CI.Full: success " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-04 10:08 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 92115 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev6) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from XEIGT_8136_full -> XEIGTPW_12240_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12240_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12240_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_12240_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-bmg: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt@kms_cursor_legacy@forked-bo@pipe-c: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_cursor_legacy@forked-bo@pipe-c.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_cursor_legacy@forked-bo@pipe-c.html * igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][4] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1: - shard-lnl: NOTRUN -> [ABORT][6] +26 other tests abort [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html #### Warnings #### * igt@kms_async_flips@crc: - shard-bmg: [DMESG-FAIL][9] ([Intel XE#1727] / [Intel XE#3468]) -> [INCOMPLETE][10] +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-8/igt@kms_async_flips@crc.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_async_flips@crc.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][11] ([Intel XE#3468]) -> [DMESG-WARN][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_module_load@load: - shard-dg2-set2: ([FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25], [FAIL][26], [FAIL][27], [FAIL][28], [FAIL][29], [FAIL][30], [FAIL][31], [FAIL][32], [FAIL][33], [FAIL][34], [FAIL][35], [FAIL][36], [FAIL][37]) ([Intel XE#3683]) -> ([FAIL][38], [FAIL][39], [FAIL][40], [FAIL][41], [FAIL][42], [FAIL][43], [FAIL][44], [FAIL][45], [FAIL][46], [FAIL][47], [FAIL][48], [FAIL][49], [FAIL][50], [FAIL][51], [FAIL][52], [FAIL][53], [FAIL][54], [FAIL][55], [FAIL][56], [FAIL][57], [FAIL][58], [FAIL][59], [FAIL][60], [FAIL][61], [FAIL][62]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-435/igt@xe_module_load@load.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-466/igt@xe_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-436/igt@xe_module_load@load.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-dg2-434/igt@xe_module_load@load.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-436/igt@xe_module_load@load.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-434/igt@xe_module_load@load.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-466/igt@xe_module_load@load.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-dg2-435/igt@xe_module_load@load.html Known issues ------------ Here are the changes found in XEIGTPW_12240_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_3d: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1465]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_3d.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1466]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#3157]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@invalid-async-flip: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#873]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#873]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3279]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2370]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3658]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1407]) +20 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2327]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1467]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1428]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1124]) +14 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1124]) +30 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#2191]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1512]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#367]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#367]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2669]) +11 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2887]) +44 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3433]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3432]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#3432]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2887]) +17 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#314]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#306]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2325]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#373]) +28 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2252]) +10 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#307]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#3278]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1468]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#1188]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][98] ([Intel XE#3468]) +41 other tests dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2320]) +12 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2321]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2321]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1424]) +17 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2286]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#323]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#309]) +13 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2291]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2291]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo: - shard-bmg: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#3226]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_cursor_legacy@forked-bo.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_cursor_legacy@forked-bo.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#2425]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1340]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3070]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2244]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2244]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#701]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#702]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2373]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1138]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1137]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_feature_discovery@dp-mst.html - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2375]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][123] ([Intel XE#3640]) +2 other tests fail [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][124] -> [FAIL][125] ([Intel XE#3321]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: [PASS][126] -> [FAIL][127] ([Intel XE#2882]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2316]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][129] -> [INCOMPLETE][130] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][131] -> [DMESG-FAIL][132] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: NOTRUN -> [FAIL][133] ([Intel XE#2882]) +2 other tests fail [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1421]) +22 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@bo-too-big-interruptible: - shard-lnl: NOTRUN -> [TIMEOUT][135] ([Intel XE#1504]) +1 other test timeout [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2: - shard-bmg: NOTRUN -> [DMESG-FAIL][136] ([Intel XE#3468]) +8 other tests dmesg-fail [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [PASS][137] -> [DMESG-FAIL][138] ([Intel XE#2705] / [Intel XE#3468]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1401]) +15 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2293]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1401] / [Intel XE#1745]) +15 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1397]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#352]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#651]) +42 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][147] ([Intel XE#2333]) +19 other tests fail [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2312]) +8 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#1469]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2311]) +37 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2313]) +38 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#656]) +126 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2340]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1470] / [Intel XE#2853]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#3374] / [Intel XE#3544]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#3374] / [Intel XE#3544]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1503]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][158] -> [DMESG-FAIL][159] ([Intel XE#3468]) +14 other tests dmesg-fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_hdr@static-toggle-suspend.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#346]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#346]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2934]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2934]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2927]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2486]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#599]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2393]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2493]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3307]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#2763]) +53 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2763]) +13 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#870]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#3309]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: NOTRUN -> [FAIL][174] ([Intel XE#1430]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2392]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2505]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][177] -> [INCOMPLETE][178] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_pm_rpm@cursor.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-bmg: NOTRUN -> [DMESG-WARN][179] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-bmg: [PASS][180] -> [DMESG-WARN][181] ([Intel XE#1727] / [Intel XE#3468]) +8 other tests dmesg-warn [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#1439] / [Intel XE#3141]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#2893]) +17 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#1489]) +13 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1128]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2387]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#1406]) +13 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2234] / [Intel XE#2850]) +24 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_psr@psr2-no-drrs.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#3414]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1127]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2330]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#3414]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#2413]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2413] / [Intel XE#374]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#374]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#1435]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#1499]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#1499]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#756]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#756]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#1091] / [Intel XE#2849]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#1447]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-bmg: [PASS][203] -> [DMESG-WARN][204] ([Intel XE#3468]) +38 other tests dmesg-warn [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_copy_basic@mem-set-linear-0x369.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2504]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@exec-queue-placements: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#2905]) +33 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@xe_eudebug@exec-queue-placements.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2905]) +18 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [INCOMPLETE][208] ([Intel XE#1473] / [Intel XE#3468]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#688]) +33 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][210] ([Intel XE#1473]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race: - shard-bmg: NOTRUN -> [DMESG-WARN][211] ([Intel XE#1727]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#2322]) +12 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#1392]) +29 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][214] -> [DMESG-WARN][215] ([Intel XE#3343] / [Intel XE#3468]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [PASS][216] -> [SKIP][217] ([Intel XE#1192]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@xe_live_ktest@xe_bo.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#2229]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#2833]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html * igt@xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#378]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@xe_module_load@force-load.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][221] -> [DMESG-WARN][222] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@xe_module_load@many-reload.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload: - shard-bmg: NOTRUN -> [DMESG-FAIL][223] ([Intel XE#3467]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_module_load@reload.html * igt@xe_module_load@reload-no-display: - shard-bmg: NOTRUN -> [DMESG-WARN][224] ([Intel XE#3467]) +2 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@xe_module_load@reload-no-display.html * igt@xe_oa@non-privileged-access-vaddr@ccs-0: - shard-bmg: [PASS][225] -> [DMESG-WARN][226] ([Intel XE#1727]) +2 other tests dmesg-warn [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@xe_oa@non-privileged-access-vaddr@ccs-0.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_oa@non-privileged-access-vaddr@ccs-0.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#2248]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#977]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#2245]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#1061]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@xe_pm@d3cold-basic.html - shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#2284]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#2284]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#1948]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s2idle-basic: - shard-lnl: NOTRUN -> [ABORT][235] ([Intel XE#1358]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-4/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-basic-exec: - shard-lnl: NOTRUN -> [ABORT][236] ([Intel XE#1358] / [Intel XE#1616]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-8/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: NOTRUN -> [ABORT][237] ([Intel XE#1616] / [Intel XE#3468]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [ABORT][238] ([Intel XE#1616] / [Intel XE#1694]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][239] ([Intel XE#584]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@xe_pm@s3-mocs.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: NOTRUN -> [FAIL][240] ([Intel XE#958]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#944]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-7/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][242] ([Intel XE#944]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#3342]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-lnl-5/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-bmg: [DMESG-WARN][244] -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-dp-2: - shard-bmg: [FAIL][246] -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-dp-2.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][248] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][249] +2 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][250] ([Intel XE#2291]) -> [PASS][251] +2 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][252] ([Intel XE#877]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][254] ([Intel XE#2373]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_feature_discovery@display-2x.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][256] ([Intel XE#3321]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][258] ([Intel XE#2882]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][260] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468] / [Intel XE#3561]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: - shard-bmg: [DMESG-FAIL][262] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][263] +10 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][264] ([Intel XE#1727] / [Intel XE#2635] / [Intel XE#3468]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bc-dp2-hdmi-a3.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-bmg: [DMESG-WARN][266] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-8/igt@kms_flip@dpms-off-confusion-interruptible.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-modeset-vs-hang@a-dp2: - shard-bmg: [DMESG-WARN][268] ([Intel XE#1727]) -> [PASS][269] +2 other tests pass [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_flip@flip-vs-modeset-vs-hang@a-dp2.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_flip@flip-vs-modeset-vs-hang@a-dp2.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][270] ([Intel XE#2705] / [Intel XE#2955] / [Intel XE#3468]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_flip@flip-vs-panning-interruptible.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-bmg: [SKIP][272] ([Intel XE#3007]) -> [PASS][273] +2 other tests pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_pm_rpm@i2c: - shard-bmg: [DMESG-WARN][274] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][275] +10 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-4/igt@kms_pm_rpm@i2c.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_pm_rpm@i2c.html * igt@kms_vblank@wait-idle-hang@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][276] ([Intel XE#3468]) -> [PASS][277] +13 other tests pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_vblank@wait-idle-hang@pipe-a-dp-2.html * igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01: - shard-bmg: [INCOMPLETE][278] ([Intel XE#2771]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-4/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@xe_ccs@suspend-resume@xmajor-compressed-compfmt0-system-vram01.html * igt@xe_exec_basic@many-execqueues-null-defer-bind: - shard-bmg: [SKIP][280] ([Intel XE#1130]) -> [PASS][281] +21 other tests pass [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_exec_basic@many-execqueues-null-defer-bind.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_exec_basic@many-execqueues-null-defer-bind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][282] ([Intel XE#3467]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][284] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_oa@oa-regs-whitelisted: - shard-bmg: [FAIL][286] ([Intel XE#2514]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [DMESG-WARN][288] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@xe_pm@s3-d3hot-basic-exec.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer: - shard-bmg: [DMESG-WARN][290] ([Intel XE#3468]) -> [PASS][291] +85 other tests pass [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html #### Warnings #### * igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2: - shard-bmg: [DMESG-WARN][292] ([Intel XE#3468]) -> [DMESG-WARN][293] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition@pipe-a-dp-2.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [DMESG-FAIL][294] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][295] ([Intel XE#3468]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-bmg: [SKIP][296] ([Intel XE#3007]) -> [SKIP][297] ([Intel XE#367]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][298] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][299] ([Intel XE#2887]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][300] ([Intel XE#2341]) -> [FAIL][301] ([Intel XE#1188]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_content_protection@uevent.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-bmg: [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2320]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: [SKIP][304] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][305] ([Intel XE#2244]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [DMESG-WARN][306] ([Intel XE#3468]) -> [SKIP][307] ([Intel XE#2316]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][309] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2311]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][312] ([Intel XE#2311]) -> [SKIP][313] ([Intel XE#2312]) +7 other tests skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][314] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][315] ([Intel XE#2333]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][316] ([Intel XE#2333]) -> [DMESG-FAIL][317] ([Intel XE#3468]) +3 other tests dmesg-fail [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][318] ([Intel XE#3468]) -> [FAIL][319] ([Intel XE#2333]) +7 other tests fail [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [DMESG-FAIL][321] ([Intel XE#3468]) +2 other tests dmesg-fail [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][322] ([Intel XE#3468]) -> [SKIP][323] ([Intel XE#2312]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [FAIL][325] ([Intel XE#2333]) +3 other tests fail [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][326] ([Intel XE#2333]) -> [SKIP][327] ([Intel XE#2312]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [INCOMPLETE][328] ([Intel XE#1727] / [Intel XE#2050]) -> [FAIL][329] ([Intel XE#2333]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-bmg: [SKIP][330] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][331] ([Intel XE#2311]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][332] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][333] ([Intel XE#2313]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][334] ([Intel XE#2313]) -> [SKIP][335] ([Intel XE#2312]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][336] ([Intel XE#2312]) -> [SKIP][337] ([Intel XE#2313]) +7 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: [SKIP][338] ([Intel XE#3007]) -> [SKIP][339] ([Intel XE#2763]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][340] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][341] ([Intel XE#2938]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-bmg: [SKIP][342] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][343] ([Intel XE#1489]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr@pr-cursor-blt: - shard-bmg: [SKIP][344] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][345] ([Intel XE#2234] / [Intel XE#2850]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_psr@pr-cursor-blt.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@kms_psr@pr-cursor-blt.html * igt@kms_scaling_modes@scaling-mode-none: - shard-bmg: [SKIP][346] ([Intel XE#3007]) -> [SKIP][347] ([Intel XE#2413]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-none.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-bmg: [ABORT][348] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][349] ([Intel XE#3673]) +1 other test abort [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-bmg: [FAIL][350] ([Intel XE#2364]) -> [DMESG-FAIL][351] ([Intel XE#3468]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-6/igt@xe_evict@evict-large-multi-vm-cm.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-1/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][352] ([Intel XE#1130]) -> [SKIP][353] ([Intel XE#2322]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [DMESG-WARN][354] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][355] ([Intel XE#3343]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [DMESG-WARN][356] ([Intel XE#3467]) -> [DMESG-WARN][357] ([Intel XE#3467] / [Intel XE#3468]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][358] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][359] ([Intel XE#3468]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [ABORT][360] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [ABORT][361] ([Intel XE#1616]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-7/igt@xe_pm@s2idle-basic-exec.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-7/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [ABORT][362] ([Intel XE#1616]) -> [ABORT][363] ([Intel XE#1616] / [Intel XE#3468]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_wedged@basic-wedged: - shard-bmg: [SKIP][364] ([Intel XE#1130]) -> [DMESG-WARN][365] ([Intel XE#2919]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8136/shard-bmg-2/igt@xe_wedged@basic-wedged.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/shard-bmg-4/igt@xe_wedged@basic-wedged.html [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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#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#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2771 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3561 [Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673 [Intel XE#3683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3683 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8136 -> IGTPW_12240 * Linux: xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219 -> xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33 IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2310-5779fb3c12faf12589054127d60b1d36d56ba219: 5779fb3c12faf12589054127d60b1d36d56ba219 xe-2315-40be916657d26be563dbbd2b618cc398ea9aeb33: 40be916657d26be563dbbd2b618cc398ea9aeb33 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12240/index.html [-- Attachment #2: Type: text/html, Size: 110680 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.Full: success for Skip test if joiner display is connected (rev6) 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B ` (7 preceding siblings ...) 2024-12-04 10:08 ` ✗ Xe.CI.Full: " Patchwork @ 2024-12-09 14:36 ` Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-09 14:36 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected (rev6) URL : https://patchwork.freedesktop.org/series/141614/ State : success == Summary == CI Bug Log - changes from CI_DRM_15783_full -> IGTPW_12240_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_12240_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8414]) +17 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@vcs1: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8414]) +7 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@drm_fdinfo@busy-idle@vcs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#3281]) +4 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#3281]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#12392]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-snb: NOTRUN -> [ABORT][20] ([i915#11690]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][21] ([i915#8898]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-tglu: NOTRUN -> [ABORT][22] ([i915#13218]) +19 other tests abort [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@gem_exec_balancer@bonded-dual.html - shard-glk: NOTRUN -> [ABORT][23] ([i915#13218]) +17 other tests abort [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [ABORT][24] ([i915#13218]) +24 other tests abort [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#6344]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#6344]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#7276]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk1/igt@gem_lmem_swapping@random.html - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_lmem_swapping@random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#284]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-1/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][56] ([i915#12917] / [i915#12964]) +1 other test timeout [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][59] +161 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#8411]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-prime-sanity-check@all: - shard-rkl: NOTRUN -> [DMESG-WARN][64] ([i915#12964]) +3 other tests dmesg-warn [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@gem_softpin@evict-prime-sanity-check@all.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#4880]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][71] ([i915#13273]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk2/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4881]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@i915_fb_tiling.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4881]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#8399]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rps@fence-order: - shard-dg1: NOTRUN -> [ABORT][81] ([i915#13218]) +23 other tests abort [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@i915_pm_rps@fence-order.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#11681]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#11681]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@i915_pm_rps@thresholds-idle.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][84] ([i915#7443]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][85] ([i915#4817]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4212]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4212]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [INCOMPLETE][88] ([i915#9878]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_async_flips@crc.html - shard-tglu-1: NOTRUN -> [INCOMPLETE][89] ([i915#9878]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_async_flips@crc.html - shard-dg1: NOTRUN -> [WARN][90] ([i915#13287]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_async_flips@crc.html - shard-snb: NOTRUN -> [INCOMPLETE][91] ([i915#9878]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_async_flips@crc.html - shard-glk: NOTRUN -> [INCOMPLETE][92] ([i915#9878]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_async_flips@crc.html - shard-dg2: NOTRUN -> [WARN][93] ([i915#13287]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#13287]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html - shard-snb: NOTRUN -> [INCOMPLETE][95] ([i915#13287]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [INCOMPLETE][96] ([i915#13287]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][97] ([i915#13287]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [CRASH][98] ([i915#13287]) +3 other tests crash [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [CRASH][99] ([i915#13287]) +3 other tests crash [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5286]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#5286]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][103] +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3638]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5190]) +6 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6095]) +9 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-edp-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#10307] / [i915#10434] / [i915#6095]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#12313]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#12313]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][113] ([i915#12313]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#12313]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#12313]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#6095]) +37 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#12805]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#12805]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#12805]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][120] ([i915#12805]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +24 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#6095]) +9 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#12796]) +1 other test incomplete [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#6095]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6095]) +24 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +33 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][127] +7 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#7828]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#7828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-snb: NOTRUN -> [INCOMPLETE][133] ([i915#8816]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_content_protection@atomic.html - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7118] / [i915#9424]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [PASS][136] -> [DMESG-WARN][137] ([i915#12964]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8814]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3555]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3555]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5354]) +35 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][142] +14 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][143] -> [FAIL][144] ([i915#2346]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#8588]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#8588]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#8588]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#8588]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8588]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#12402]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#12402]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12402]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#8812]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8812]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3637]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3637]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][157] ([i915#11989]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#9934]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#9934]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#9934]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][162] ([i915#4839]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: NOTRUN -> [ABORT][163] ([i915#13242]) +9 other tests abort [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][164] ([i915#12745]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672] / [i915#3555]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#2587] / [i915#2672] / [i915#3555]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#3555]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555] / [i915#5190]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#1825]) +34 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][176] +15 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1825]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +8 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +11 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][180] +37 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][181] +49 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-mtlp: NOTRUN -> [ABORT][182] ([i915#13218]) +2 other tests abort [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#10055]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8708]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +11 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +18 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][187] +438 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3458]) +12 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#10656]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6301]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][194] ([i915#6301]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#6301]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#6301]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][197] ([i915#12178]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][198] ([i915#7862]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][199] ([i915#12169]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][200] ([i915#10647]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9685]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#9685]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9685]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9685]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-2/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3361]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#9519]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#9519]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#6524]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#6524]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-12/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#6524]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6524] / [i915#6805]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#11520]) +9 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#11520]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][215] ([i915#11520]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#12316]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#11520]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#11520]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#11520]) +8 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][220] ([i915#11520]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#9732]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#1072] / [i915#9732]) +19 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#1072] / [i915#9732]) +17 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr-basic: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#9732]) +11 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#1072] / [i915#9732]) +17 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-4/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5289]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5289]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#5289]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#12755] / [i915#5190]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#5289]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3555]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic: - shard-tglu: [PASS][233] -> [FAIL][234] ([i915#12722] / [i915#5465]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-tglu: [PASS][235] -> [FAIL][236] ([i915#12722]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-tglu: [PASS][237] -> [FAIL][238] ([i915#5465]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-tglu-6/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-3/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: [PASS][239] -> [FAIL][240] ([i915#5465]) +2 other tests fail [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg2-3/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12276]) +1 other test incomplete [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#11920]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#11920]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#11920]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#11920]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-9/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][246] ([i915#2437]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2437] / [i915#9412]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2437] / [i915#9412]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2437] / [i915#9412]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [ABORT][251] ([i915#13218]) +24 other tests abort [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-hang: - shard-snb: NOTRUN -> [ABORT][252] ([i915#13218]) +12 other tests abort [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb4/igt@perf_pmu@busy-hang.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8850]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-mtlp-4/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#8850]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][255] ([i915#8850]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8850]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-13/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][257] ([i915#8850]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-6/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@init-wait@rcs0: - shard-tglu-1: NOTRUN -> [ABORT][258] ([i915#13218]) +4 other tests abort [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-1/igt@perf_pmu@init-wait@rcs0.html * igt@prime_busy@hang: - shard-rkl: NOTRUN -> [DMESG-WARN][259] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-4/igt@prime_busy@hang.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#3708] / [i915#4077]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-3/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#3708] / [i915#4077]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-8/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3708]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-1/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-14/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9917]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-10/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9917]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#9917]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][268] ([i915#12910]) +9 other tests fail [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-tglu-7/igt@sriov_basic@bind-unbind-vf@vf-4.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][269] ([i915#12392]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [ABORT][271] ([i915#13218]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-snb: [SKIP][273] -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_setmode@basic: - shard-dg1: [FAIL][275] ([i915#5465]) -> [PASS][276] +2 other tests pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-dg1-17/igt@kms_setmode@basic.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-dg1-18/igt@kms_setmode@basic.html * igt@perf_pmu@multi-client@vcs0: - shard-rkl: [DMESG-WARN][277] ([i915#12964]) -> [PASS][278] +1 other test pass [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15783/shard-rkl-7/igt@perf_pmu@multi-client@vcs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/shard-rkl-2/igt@perf_pmu@multi-client@vcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11690]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11690 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12722 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218 [i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242 [i915#13273]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13273 [i915#13287]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13287 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8136 -> IGTPW_12240 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15783: 40be916657d26be563dbbd2b618cc398ea9aeb33 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12240: 29060abd6f510f1605c9e6bf366d17d4894efc92 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8136: 21076ee09438af484c58b308d8179277503922f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12240/index.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 0/4] Skip test if joiner display is connected @ 2024-11-29 4:27 Jeevan B 2024-11-29 4:27 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 0 siblings, 1 reply; 13+ messages in thread From: Jeevan B @ 2024-11-29 4:27 UTC (permalink / raw) To: igt-dev; +Cc: 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 (3): lib/igt_kms: Add is_joiner_mode function tests/kms_display_modes: Skip test if joiner display is connected lib/igt_kms: Add 6k resolution support for a single CRTC Santhosh Reddy Guddati (1): tests/kms_async_flips: Skip async flips on joiner output lib/igt_kms.c | 55 +++++++++++++++++++++++++++++++++------ 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, 76 insertions(+), 18 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output 2024-11-29 4:27 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B @ 2024-11-29 4:27 ` Jeevan B 0 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-11-29 4:27 UTC (permalink / raw) To: igt-dev; +Cc: Santhosh Reddy Guddati, Jeevan B, Kunal Joshi, Swati Sharma 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] 13+ messages in thread
* [PATCH i-g-t 0/4] Skip test if joiner display is connected @ 2024-11-27 8:13 Jeevan B 2024-11-27 8:13 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 0 siblings, 1 reply; 13+ messages in thread From: Jeevan B @ 2024-11-27 8:13 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 (3): lib/igt_kms: Add is_joiner_mode function tests/kms_display_modes: Skip test if joiner display is connected lib/igt_kms: Add 6k resolution support for a single CRTC Santhosh Reddy Guddati (1): tests/kms_async_flips: Skip async flips on joiner output lib/igt_kms.c | 54 +++++++++++++++++++++++++++++++++------ 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, 75 insertions(+), 18 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output 2024-11-27 8:13 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B @ 2024-11-27 8:13 ` Jeevan B 0 siblings, 0 replies; 13+ messages in thread From: Jeevan B @ 2024-11-27 8:13 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] 13+ messages in thread
end of thread, other threads:[~2024-12-09 14:36 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-04 6:09 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 1/4] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 3/4] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B 2024-12-04 6:09 ` [PATCH i-g-t 4/4] lib/igt_kms: Add 6k resolution support for a single CRTC Jeevan B 2024-12-04 7:40 ` ✓ i915.CI.BAT: success for Skip test if joiner display is connected (rev6) Patchwork 2024-12-04 9:13 ` ✗ Xe.CI.BAT: failure " Patchwork 2024-12-04 9:14 ` B, Jeevan 2024-12-04 9:17 ` ✗ i915.CI.Full: " Patchwork 2024-12-04 10:08 ` ✗ Xe.CI.Full: " Patchwork 2024-12-09 14:36 ` ✓ i915.CI.Full: success " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-11-29 4:27 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B 2024-11-29 4:27 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 2024-11-27 8:13 [PATCH i-g-t 0/4] Skip test if joiner display is connected Jeevan B 2024-11-27 8:13 ` [PATCH i-g-t 2/4] tests/kms_async_flips: Skip async flips on joiner output Jeevan B
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox